Skip to content

Commit

Permalink
fix: use Docker compose v2
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey committed Sep 17, 2023
1 parent 6a4ffbd commit e836e54
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- name: 🐳 Docker compose
# the sleep is just there to give time for postgres to get started
run: docker-compose up -d && sleep 3
run: docker compose up -d && sleep 3
env:
DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/postgres"

Expand Down
4 changes: 2 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ tasks:
fi
- name: Docker
init: docker-compose pull
command: docker-compose up
init: docker compose pull
command: docker compose up

- init: npm install
command: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dev": "run-p dev:*",
"dev:server": "cross-env NODE_ENV=development npm run build:server -- --watch",
"dev:remix": "remix dev --manual -c \"node --require ./mocks ./build/server.js\"",
"docker": "docker-compose up -d",
"docker": "docker compose up -d",
"format": "prettier --write .",
"format:repo": "npm run format && npm run lint:repo -- --fix",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
Expand Down

0 comments on commit e836e54

Please sign in to comment.