fix/node-modules-named-volumes (#94)
Co-authored-by: openhands <openhands@all-hands.dev> Reviewed-on: https://codeberg.org/johba/harb/pulls/94
This commit is contained in:
parent
19bac420d0
commit
1c6f118f6b
9 changed files with 182 additions and 87 deletions
|
|
@ -34,6 +34,18 @@ services:
|
|||
|
||||
postgres:
|
||||
image: docker.io/library/postgres:16-alpine
|
||||
command:
|
||||
- "postgres"
|
||||
- "-c"
|
||||
- "wal_level=minimal"
|
||||
- "-c"
|
||||
- "max_wal_size=128MB"
|
||||
- "-c"
|
||||
- "max_wal_senders=0"
|
||||
- "-c"
|
||||
- "archive_mode=off"
|
||||
- "-c"
|
||||
- "checkpoint_timeout=30min"
|
||||
environment:
|
||||
- POSTGRES_USER=ponder
|
||||
- POSTGRES_PASSWORD=ponder_local
|
||||
|
|
@ -82,6 +94,7 @@ services:
|
|||
- .:/workspace:z
|
||||
- .git:/workspace/.git:ro,z
|
||||
- ./kraiken-lib/dist:/workspace/kraiken-lib/dist:ro,z
|
||||
- ponder_node_modules:/workspace/services/ponder/node_modules
|
||||
working_dir: /workspace
|
||||
environment:
|
||||
- CHOKIDAR_USEPOLLING=1
|
||||
|
|
@ -112,6 +125,7 @@ services:
|
|||
- .:/workspace:z
|
||||
- .git:/workspace/.git:ro,z
|
||||
- ./kraiken-lib/dist:/workspace/kraiken-lib/dist:ro,z
|
||||
- webapp_node_modules:/workspace/web-app/node_modules
|
||||
working_dir: /workspace
|
||||
environment:
|
||||
- CHOKIDAR_USEPOLLING=1
|
||||
|
|
@ -140,6 +154,7 @@ services:
|
|||
- .:/workspace:z
|
||||
- .git:/workspace/.git:ro,z
|
||||
- ./kraiken-lib/dist:/workspace/kraiken-lib/dist:ro,z
|
||||
- landing_node_modules:/workspace/landing/node_modules
|
||||
working_dir: /workspace
|
||||
environment:
|
||||
- CHOKIDAR_USEPOLLING=1
|
||||
|
|
@ -166,6 +181,7 @@ services:
|
|||
- .:/workspace:z
|
||||
- .git:/workspace/.git:ro,z
|
||||
- ./kraiken-lib/dist:/workspace/kraiken-lib/dist:ro,z
|
||||
- txnbot_node_modules:/workspace/services/txnBot/node_modules
|
||||
working_dir: /workspace
|
||||
environment:
|
||||
- GIT_BRANCH=${GIT_BRANCH:-}
|
||||
|
|
@ -199,3 +215,7 @@ services:
|
|||
|
||||
volumes:
|
||||
postgres-data:
|
||||
ponder_node_modules:
|
||||
webapp_node_modules:
|
||||
landing_node_modules:
|
||||
txnbot_node_modules:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue