start stack from container (#40)
resolves #36 Co-authored-by: johba <johba@harb.eth> Reviewed-on: https://codeberg.org/johba/harb/pulls/40
This commit is contained in:
parent
3a7162462b
commit
4f7cebda56
10 changed files with 160 additions and 5 deletions
|
|
@ -39,8 +39,10 @@ services:
|
|||
command: ["/workspace/containers/bootstrap.sh"]
|
||||
volumes:
|
||||
- .:/workspace:z
|
||||
- .git:/workspace/.git:ro,z
|
||||
environment:
|
||||
- ANVIL_RPC=http://anvil:8545
|
||||
- GIT_BRANCH=${GIT_BRANCH:-}
|
||||
depends_on:
|
||||
anvil:
|
||||
condition: service_healthy
|
||||
|
|
@ -60,11 +62,13 @@ services:
|
|||
entrypoint: ["/workspace/containers/ponder-dev-entrypoint.sh"]
|
||||
volumes:
|
||||
- .:/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
|
||||
- GIT_BRANCH=${GIT_BRANCH:-}
|
||||
depends_on:
|
||||
anvil:
|
||||
condition: service_healthy
|
||||
|
|
@ -89,11 +93,13 @@ services:
|
|||
entrypoint: ["/workspace/containers/webapp-dev-entrypoint.sh"]
|
||||
volumes:
|
||||
- .:/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
|
||||
- GIT_BRANCH=${GIT_BRANCH:-}
|
||||
depends_on:
|
||||
ponder:
|
||||
condition: service_healthy
|
||||
|
|
@ -113,11 +119,13 @@ services:
|
|||
entrypoint: ["/workspace/containers/landing-dev-entrypoint.sh"]
|
||||
volumes:
|
||||
- .:/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
|
||||
- GIT_BRANCH=${GIT_BRANCH:-}
|
||||
depends_on:
|
||||
ponder:
|
||||
condition: service_healthy
|
||||
|
|
@ -137,10 +145,13 @@ services:
|
|||
entrypoint: ["/workspace/containers/txn-bot-entrypoint.sh"]
|
||||
volumes:
|
||||
- .:/workspace:z
|
||||
- .git:/workspace/.git:ro,z
|
||||
- ./kraiken-lib/dist:/workspace/kraiken-lib/dist:ro,z
|
||||
- txn-node-modules:/workspace/services/txnBot/node_modules
|
||||
- kraiken-node-modules:/workspace/kraiken-lib/node_modules
|
||||
working_dir: /workspace
|
||||
environment:
|
||||
- GIT_BRANCH=${GIT_BRANCH:-}
|
||||
depends_on:
|
||||
ponder:
|
||||
condition: service_healthy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue