wip
This commit is contained in:
parent
187c06ef5a
commit
044d2b542c
7
app/data/compose/docker-compose-laconic-explorer.yml
Normal file
7
app/data/compose/docker-compose-laconic-explorer.yml
Normal file
@ -0,0 +1,7 @@
|
||||
version: "3.2"
|
||||
services:
|
||||
laconicd:
|
||||
restart: unless-stopped
|
||||
image: cerc/laconic-explorer:local
|
||||
ports:
|
||||
- "1317"
|
||||
1
app/data/config/laconic-explorer/README.md
Normal file
1
app/data/config/laconic-explorer/README.md
Normal file
@ -0,0 +1 @@
|
||||
TODO figure out config
|
||||
15
app/data/container-build/cerc-laconic-explorer/Dockerfile
Normal file
15
app/data/container-build/cerc-laconic-explorer/Dockerfile
Normal file
@ -0,0 +1,15 @@
|
||||
# copied and modified from erc20 Dockerfile
|
||||
|
||||
FROM node:16.17.1-alpine3.16
|
||||
|
||||
RUN apk --update --no-cache add git python3 alpine-sdk
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN echo "Building Laconic Explorer" && \
|
||||
git checkout master && \
|
||||
yarn && yarn build
|
||||
|
||||
#WORKDIR /app/packages/erc20-watcher
|
||||
7
app/data/container-build/cerc-laconic-explorer/build.sh
Normal file
7
app/data/container-build/cerc-laconic-explorer/build.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build cerc/laconic-explorer
|
||||
|
||||
# See: https://stackoverflow.com/a/246128/1701505
|
||||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||
|
||||
docker build -t cerc/laconic-explorer:local -f ${SCRIPT_DIR}/Dockerfile ${CERC_REPO_BASE_DIR}/laconic-explorer
|
||||
@ -24,3 +24,4 @@ cerc/builder-js
|
||||
cerc/keycloak
|
||||
cerc/tx-spammer
|
||||
cerc/builder-gerbil
|
||||
cerc/laconic-explorer
|
||||
|
||||
@ -19,3 +19,4 @@ eth-probe
|
||||
keycloak
|
||||
tx-spammer
|
||||
kubo
|
||||
laconic-explorer
|
||||
|
||||
@ -17,3 +17,4 @@ vulcanize/assemblyscript
|
||||
cerc-io/eth-probe
|
||||
cerc-io/tx-spammer
|
||||
foundry-rs/foundry
|
||||
gateway-fm/laconic-explorer
|
||||
|
||||
Loading…
Reference in New Issue
Block a user