Skip to content

Commit

Permalink
fix: docker::prod task should pull, not build
Browse files Browse the repository at this point in the history
  • Loading branch information
mymindishazel committed Aug 1, 2024
1 parent b9dce48 commit 40237b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lint:win32": "eslint ./**/*.js",
"test": "mocha ./tests --exit --recursive --timeout 300000",
"test-single": "mocha $1 --exit --timeout 300000",
"docker-start": "docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d --build",
"docker-start": "docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d --pull always",
"docker-down": "docker compose -f docker-compose.yml -f docker-compose.prod.yml down --rmi all",
"docker-start-dev": "docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build",
"docker-down-dev": "docker compose -f docker-compose.yml -f docker-compose.dev.yml down --rmi all",
Expand Down

0 comments on commit 40237b7

Please sign in to comment.