diff --git a/app/data/compose/docker-compose-laconic-explorer.yml b/app/data/compose/docker-compose-laconic-explorer.yml new file mode 100644 index 00000000..10319bf1 --- /dev/null +++ b/app/data/compose/docker-compose-laconic-explorer.yml @@ -0,0 +1,7 @@ +version: "3.2" +services: + laconicd: + restart: unless-stopped + image: cerc/laconic-explorer:local + ports: + - "1317" diff --git a/app/data/config/laconic-explorer/README.md b/app/data/config/laconic-explorer/README.md new file mode 100644 index 00000000..af5d642f --- /dev/null +++ b/app/data/config/laconic-explorer/README.md @@ -0,0 +1 @@ +TODO figure out config diff --git a/app/data/container-build/cerc-laconic-explorer/Dockerfile b/app/data/container-build/cerc-laconic-explorer/Dockerfile new file mode 100644 index 00000000..6d3120a3 --- /dev/null +++ b/app/data/container-build/cerc-laconic-explorer/Dockerfile @@ -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 diff --git a/app/data/container-build/cerc-laconic-explorer/build.sh b/app/data/container-build/cerc-laconic-explorer/build.sh new file mode 100644 index 00000000..69d86365 --- /dev/null +++ b/app/data/container-build/cerc-laconic-explorer/build.sh @@ -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 diff --git a/app/data/container-image-list.txt b/app/data/container-image-list.txt index f22b4543..9878d4aa 100644 --- a/app/data/container-image-list.txt +++ b/app/data/container-image-list.txt @@ -24,3 +24,4 @@ cerc/builder-js cerc/keycloak cerc/tx-spammer cerc/builder-gerbil +cerc/laconic-explorer diff --git a/app/data/pod-list.txt b/app/data/pod-list.txt index 81ec9e99..79ca47a0 100644 --- a/app/data/pod-list.txt +++ b/app/data/pod-list.txt @@ -19,3 +19,4 @@ eth-probe keycloak tx-spammer kubo +laconic-explorer diff --git a/app/data/repository-list.txt b/app/data/repository-list.txt index 35f47c07..4d664236 100644 --- a/app/data/repository-list.txt +++ b/app/data/repository-list.txt @@ -17,3 +17,4 @@ vulcanize/assemblyscript cerc-io/eth-probe cerc-io/tx-spammer foundry-rs/foundry +gateway-fm/laconic-explorer