Rename laconic2d container and services to laconicd (#8)

Part of [Rename laconic2d to laconicd](https://www.notion.so/Rename-laconic2d-to-laconicd-9028d0c020d24d1288e92ebcb773d7a7)

Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Reviewed-on: #8
Co-authored-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
Co-committed-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
This commit is contained in:
Prathamesh Musale 2024-07-23 12:55:38 +00:00 committed by nabarun
parent 324b38cbd4
commit 774184c810
12 changed files with 23 additions and 23 deletions

View File

@ -1,6 +1,6 @@
services: services:
cli: cli:
image: cerc/laconic2-registry-cli:local image: cerc/laconic-registry-cli:local
command: ["bash", "-c", "/app/create-config.sh && tail -f /dev/null"] command: ["bash", "-c", "/app/create-config.sh && tail -f /dev/null"]
environment: environment:
CERC_LACONICD_RPC_ENDPOINT: ${CERC_LACONICD_RPC_ENDPOINT:-http://laconicd:26657} CERC_LACONICD_RPC_ENDPOINT: ${CERC_LACONICD_RPC_ENDPOINT:-http://laconicd:26657}
@ -18,7 +18,7 @@ services:
console: console:
restart: unless-stopped restart: unless-stopped
image: cerc/laconic2-console-host:local image: cerc/laconic-console-host:local
environment: environment:
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG} CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG}
CERC_WEBAPP_FILES_DIR: ${CERC_WEBAPP_FILES_DIR:-/usr/local/share/.config/yarn/global/node_modules/@cerc-io/console-app/dist/production} CERC_WEBAPP_FILES_DIR: ${CERC_WEBAPP_FILES_DIR:-/usr/local/share/.config/yarn/global/node_modules/@cerc-io/console-app/dist/production}

View File

@ -1,7 +1,7 @@
services: services:
laconicd: laconicd:
restart: unless-stopped restart: unless-stopped
image: cerc/laconic2d:local image: cerc/laconicd:local
command: ["bash", "-c", "/opt/run-laconicd.sh"] command: ["bash", "-c", "/opt/run-laconicd.sh"]
environment: environment:
CERC_MONIKER: ${CERC_MONIKER:-TestnetNode} CERC_MONIKER: ${CERC_MONIKER:-TestnetNode}

View File

@ -1,10 +1,10 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Build cerc/laconic2-console-host # Build cerc/laconic-console-host
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
# See: https://stackoverflow.com/a/246128/1701505 # See: https://stackoverflow.com/a/246128/1701505
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
docker build -t cerc/laconic2-console-host:local ${build_command_args} -f ${SCRIPT_DIR}/Dockerfile ${CERC_REPO_BASE_DIR}/laconic-console docker build -t cerc/laconic-console-host:local ${build_command_args} -f ${SCRIPT_DIR}/Dockerfile ${CERC_REPO_BASE_DIR}/laconic-console

View File

@ -1,9 +1,9 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Build cerc/laconic2-registry-cli # Build cerc/laconic-registry-cli
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
# See: https://stackoverflow.com/a/246128/1701505 # See: https://stackoverflow.com/a/246128/1701505
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
docker build -t cerc/laconic2-registry-cli:local ${build_command_args} -f ${SCRIPT_DIR}/Dockerfile ${CERC_REPO_BASE_DIR}/laconic-registry-cli docker build -t cerc/laconic-registry-cli:local ${build_command_args} -f ${SCRIPT_DIR}/Dockerfile ${CERC_REPO_BASE_DIR}/laconic-registry-cli

View File

@ -1,5 +0,0 @@
#!/usr/bin/env bash
# Build cerc/laconic2d
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
docker build -t cerc/laconic2d:local ${build_command_args} ${CERC_REPO_BASE_DIR}/laconic2d

View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Build cerc/laconicd
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
docker build -t cerc/laconicd:local ${build_command_args} ${CERC_REPO_BASE_DIR}/laconicd

View File

@ -28,9 +28,9 @@ Instructions for running laconic registry CLI and console
This should create the following docker images locally: This should create the following docker images locally:
* `cerc/laconic2-registry-cli` * `cerc/laconic-registry-cli`
* `cerc/webapp-base` * `cerc/webapp-base`
* `cerc/laconic2-console-host` * `cerc/laconic-console-host`
## Create a deployment ## Create a deployment

View File

@ -2,11 +2,11 @@ version: "1.0"
name: laconic-console name: laconic-console
description: "Laconic registry CLI and console" description: "Laconic registry CLI and console"
repos: repos:
- git.vdb.to/cerc-io/laconic-registry-cli@laconic2 - git.vdb.to/cerc-io/laconic-registry-cli
- git.vdb.to/cerc-io/laconic-console@laconic2 - git.vdb.to/cerc-io/laconic-console
containers: containers:
- cerc/laconic2-registry-cli - cerc/laconic-registry-cli
- cerc/webapp-base - cerc/webapp-base
- cerc/laconic2-console-host - cerc/laconic-console-host
pods: pods:
- laconic-console - laconic-console

View File

@ -46,10 +46,10 @@ Instructions for running a laconicd testnet full node and joining as a validator
This should create the following docker images locally: This should create the following docker images locally:
* `cerc/laconic2d` * `cerc/laconicd`
* `cerc/laconic2-registry-cli` * `cerc/laconic-registry-cli`
* `cerc/webapp-base` * `cerc/webapp-base`
* `cerc/laconic2-console-host` * `cerc/laconic-console-host`
## Create a deployment ## Create a deployment

View File

@ -2,8 +2,8 @@ version: "1.0"
name: testnet-laconicd name: testnet-laconicd
description: "Laconicd full node" description: "Laconicd full node"
repos: repos:
- git.vdb.to/cerc-io/laconic2d - git.vdb.to/cerc-io/laconicd
containers: containers:
- cerc/laconic2d - cerc/laconicd
pods: pods:
- testnet-laconicd - testnet-laconicd