-
Notifications
You must be signed in to change notification settings - Fork 0
Simplify Docker setup and improve local development workflow #140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,8 +25,8 @@ | |
| "pgtyped": "pnpm --filter backend run pgtyped", | ||
| "pgtyped:watch": "pnpm --filter backend run pgtyped:watch", | ||
| "seed": "pnpm --filter backend run seed", | ||
| "docker:up": "docker-compose up -d", | ||
| "docker:down": "docker-compose down", | ||
| "docker:db:up": "docker compose up postgres -d", | ||
| "docker:down": "docker compose down", | ||
|
Comment on lines
+28
to
+29
|
||
| "prepare": "husky && pnpm --filter frontend run sync", | ||
| "release": "semantic-release", | ||
| "version:sync": "node scripts/sync-versions.mjs", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
docker:db:upusesdocker compose up postgres -d. Elsewhere in the repo the documented pattern isdocker compose up -d postgres(e.g.docs/postgis-address-autocomplete.md), which also matches the canonical CLI syntax. Reordering the args will keep docs consistent and avoid edge-case parsing differences across Docker/Compose versions.