Skip to content

Commit

Permalink
fix(build): add force pull 'latest' nightly images (#441)
Browse files Browse the repository at this point in the history
* fix(build): add force pull 'latest' nightly images

* feat(build): update docker compose version
  • Loading branch information
oxoxoekb authored Oct 11, 2023
1 parent 1f219f0 commit 6eed72a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start:dev-proxy": "yarn serve --config webpack.config.dev-proxy.js",
"start:docker": "npm-run-all --parallel backend start:docker-proxy",
"start:docker-proxy": "yarn serve --config webpack.config.docker-proxy.js",
"backend": "docker-compose -f src/tests/core/api/docker-compose.yml up",
"backend": "docker compose -f src/tests/core/api/docker-compose.yml down --rmi all && docker compose -f src/tests/core/api/docker-compose.yml up",
"build": "webpack --mode=production",
"storybook": "cross-env NODE_ENV=development start-storybook dev -p 9001 -c .storybook --ci ",
"storybook:ci": "yarn storybook --ci --quiet",
Expand Down
10 changes: 5 additions & 5 deletions src/tests/core/api/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- data:/data

filter:
image: moira/filter-nightly
image: moira/filter-nightly:latest
ports:
- "2003:2003"
depends_on:
Expand All @@ -16,7 +16,7 @@ services:
- redis:localhost

checker:
image: moira/checker-nightly
image: moira/checker-nightly:latest
networks:
- default
depends_on:
Expand All @@ -26,15 +26,15 @@ services:
- redis:localhost

notifier:
image: moira/notifier-nightly
image: moira/notifier-nightly:latest
depends_on:
- redis
- checker
links:
- redis:localhost

api:
image: moira/api-nightly
image: moira/api-nightly:latest
depends_on:
- redis
- checker
Expand All @@ -45,7 +45,7 @@ services:
- balancer

web:
image: moira/web2
image: moira/web2:latest
networks:
- balancer

Expand Down

0 comments on commit 6eed72a

Please sign in to comment.