Skip to content

Commit

Permalink
fix: deprecated docker-compose command (#482)
Browse files Browse the repository at this point in the history
Co-authored-by: Jake Rosenberg <[email protected]>
  • Loading branch information
wesleyboar and jarosenb authored Oct 17, 2024
1 parent d0a95d2 commit f6abca1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/tup-cms/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
],
"options": {
"commands": ["docker-compose -f docker-compose.dev.yml build"],
"commands": ["docker compose -f docker-compose.dev.yml build"],
"cwd": "apps/tup-cms",
"parallel": false
}
Expand All @@ -23,8 +23,8 @@
"executor": "nx:run-commands",
"options": {
"commands": [
"docker-compose -f docker-compose.dev.yml stop",
"docker-compose -f docker-compose.dev.yml up"
"docker compose -f docker-compose.dev.yml stop",
"docker compose -f docker-compose.dev.yml up"
],
"cwd": "apps/tup-cms",
"parallel": false
Expand All @@ -33,7 +33,7 @@
"down": {
"executor": "nx:run-commands",
"options": {
"command": "docker-compose -f docker-compose.dev.yml down",
"command": "docker compose -f docker-compose.dev.yml down",
"cwd": "apps/tup-cms"
}
},
Expand Down

0 comments on commit f6abca1

Please sign in to comment.