This commit is contained in:
zramsay 2023-02-13 18:31:59 -05:00
parent 187c06ef5a
commit 044d2b542c
No known key found for this signature in database
GPG Key ID: FECD2DBFAE9DBE63
7 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,7 @@
version: "3.2"
services:
laconicd:
restart: unless-stopped
image: cerc/laconic-explorer:local
ports:
- "1317"

View File

@ -0,0 +1 @@
TODO figure out config

View 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

View 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

View File

@ -24,3 +24,4 @@ cerc/builder-js
cerc/keycloak
cerc/tx-spammer
cerc/builder-gerbil
cerc/laconic-explorer

View File

@ -19,3 +19,4 @@ eth-probe
keycloak
tx-spammer
kubo
laconic-explorer

View File

@ -17,3 +17,4 @@ vulcanize/assemblyscript
cerc-io/eth-probe
cerc-io/tx-spammer
foundry-rs/foundry
gateway-fm/laconic-explorer