Skip to content

Commit

Permalink
Update sandbox makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
aopoltorzhicky committed Oct 16, 2023
1 parent 0822999 commit 45917ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ ps:
docker ps --format "table {{.Names}}\t{{.RunningFor}}\t{{.Status}}\t{{.Ports}}"

sandbox-pull:
TAG_FRONT=4.6.2 TAG_BACK=4.7.2 docker-compose -f docker-compose.flextesa.yml pull
TAG=4.7.6 docker-compose -f docker-compose.flextesa.yml pull

flextesa-sandbox:
COMPOSE_PROJECT_NAME=bcdbox TAG_FRONT=4.6.2 TAG_BACK=4.7.2 docker-compose -f docker-compose.flextesa.yml up -d
COMPOSE_PROJECT_NAME=bcdbox TAG=4.7.6 docker-compose -f docker-compose.flextesa.yml up -d

sandbox-down:
COMPOSE_PROJECT_NAME=bcdbox docker-compose -f docker-compose.flextesa.yml down
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.flextesa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:

api:
restart: always
image: ghcr.io/baking-bad/bcdhub-api:${TAG_BACK}
image: ghcr.io/baking-bad/bcdhub-api:${TAG}
environment:
- BCD_ENV=sandbox
- GIN_MODE=debug
Expand All @@ -38,7 +38,7 @@ services:

indexer:
restart: always
image: ghcr.io/baking-bad/bcdhub-indexer:${TAG_BACK}
image: ghcr.io/baking-bad/bcdhub-indexer:${TAG}
environment:
- BCD_ENV=sandbox
- POSTGRES_USER=root
Expand Down Expand Up @@ -69,7 +69,7 @@ services:
gui:
container_name: sandbox-gui
restart: always
image: ghcr.io/baking-bad/bcdhub-gui:${TAG_FRONT}
image: ghcr.io/baking-bad/bcdhub-gui:${TAG}
depends_on:
- api
ports:
Expand Down

0 comments on commit 45917ca

Please sign in to comment.