Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion miner/envs/runner/data/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ services:
- "com.centurylinklabs.watchtower.enable=true"

nginx:
image: backenddevelopersltd/${MINER_NGINX_IMAGE_REPO}:${MINER_IMAGE_TAG:-v0-latest}
image: backenddevelopersltd/${MINER_NGINX_IMAGE_REPO}:${NGINX_IMAGE_TAG:-v0-latest}
restart: unless-stopped
healthcheck:
test: wget -q --spider 0.0.0.0:80/admin/login/ || exit 1
Expand Down
8 changes: 4 additions & 4 deletions validator/envs/runner/data/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
<<: *logging

app:
image: backenddevelopersltd/${VALIDATOR_IMAGE_REPO}:v0-latest
image: backenddevelopersltd/${VALIDATOR_IMAGE_REPO}:${VALIDATOR_IMAGE_TAG:-v0-latest}
pull_policy: always
healthcheck:
test: wget -q --spider 127.0.0.1:8000/admin/login/ || exit 1
Expand All @@ -49,7 +49,7 @@ services:
- "com.centurylinklabs.watchtower.enable=true"

celery-worker:
image: backenddevelopersltd/${VALIDATOR_IMAGE_REPO}:v0-latest
image: backenddevelopersltd/${VALIDATOR_IMAGE_REPO}:${VALIDATOR_IMAGE_TAG:-v0-latest}
pull_policy: always
init: true
healthcheck:
Expand All @@ -73,7 +73,7 @@ services:
- "com.centurylinklabs.watchtower.enable=true"

celery-beat:
image: backenddevelopersltd/${VALIDATOR_IMAGE_REPO}:v0-latest
image: backenddevelopersltd/${VALIDATOR_IMAGE_REPO}:${VALIDATOR_IMAGE_TAG:-v0-latest}
pull_policy: always
init: true
restart: unless-stopped
Expand All @@ -92,7 +92,7 @@ services:
- "com.centurylinklabs.watchtower.enable=true"

connect-facilitator:
image: backenddevelopersltd/${VALIDATOR_IMAGE_REPO}:v0-latest
image: backenddevelopersltd/${VALIDATOR_IMAGE_REPO}:${VALIDATOR_IMAGE_TAG:-v0-latest}
pull_policy: always
init: true
restart: unless-stopped
Expand Down