This commit is contained in:
Blair Vanderlugt 2021-01-28 20:26:08 -08:00
parent 21605a14fe
commit a2e7cf71de
4 changed files with 9 additions and 7 deletions

View File

@ -17,7 +17,7 @@ delete data
docker-compose down -v docker-compose down -v
``` ```
rebuild all the images rebuild an images
``` ```
docker-compose build --no-cache docker-compose up -d --no-deps --build <service_name>
``` ```

@ -1 +1 @@
Subproject commit a8de41d182a5ba22248f2c72d716c8b84c110e93 Subproject commit 85750ac79eaa3fc2ba2a4191779c1dbfa408e5f5

View File

@ -38,7 +38,6 @@ vobject==0.9.6.1
web3==5.12.2 web3==5.12.2
websockets==8.1 websockets==8.1
yaml-acl==0.0.1 yaml-acl==0.0.1
semver==2.13.0
rlp==2.0.1 rlp==2.0.1
cryptocurrency-cli-tools==0.0.4 cryptocurrency-cli-tools==0.0.4
giftable-erc20-token==0.0.7b5 giftable-erc20-token==0.0.7b5

View File

@ -122,7 +122,7 @@ services:
# image: grassrootseconomics:cic-eth-service # image: grassrootseconomics:cic-eth-service
build: build:
context: apps/ context: apps/
dockerfile: cic-eth/docker/Dockerfiles dockerfile: cic-eth/docker/Dockerfile
environment: environment:
CIC_REGISTRY_ADDRESS: $CIC_REGISTRY_ADDRESS CIC_REGISTRY_ADDRESS: $CIC_REGISTRY_ADDRESS
ETH_PROVIDER: ${ETH_PROVIDER:-http://eth:8545} ETH_PROVIDER: ${ETH_PROVIDER:-http://eth:8545}
@ -153,11 +153,14 @@ services:
volumes: volumes:
- signer-data:/tmp/cic/signer - signer-data:/tmp/cic/signer
command: command:
- /bin/sh - /bin/bash
- -c - -c
- | - |
if [[ -f /tmp/cic/config/.env ]]; then source /tmp/cic/config/.env; fi if [[ -f /tmp/cic/config/.env ]]; then source /tmp/cic/config/.env; fi
"/root/start_tasker.sh -q cic-eth -vv" pwd
ls
./start_tasker.sh -q cic-eth -vv
# command: [/bin/sh, "./start_tasker.sh", -q, cic-eth, -vv ]
# cic-eth-manager-head: # cic-eth-manager-head:
# image: grassrootseconomics:cic-eth-service # image: grassrootseconomics:cic-eth-service