mirror of
https://github.com/status-im/status-python-sdk.git
synced 2026-08-30 21:51:14 +00:00
Related to https://github.com/status-im/status-bot/issues/7 - Make backup folder into a volume so `.bkp` files can be used
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
---
|
|
services:
|
|
status-backend:
|
|
image: harbor.status.im/bi/status-backend:dev
|
|
container_name: status-backend
|
|
ports:
|
|
- 8080:8080
|
|
- 8545:8545
|
|
- 30303:30303
|
|
entrypoint: 'status-backend'
|
|
command: '-address 0.0.0.0:8080'
|
|
volumes:
|
|
- ./data-dir:/data-dir
|
|
- ./backups:/root/.config/Status/backups
|
|
networks:
|
|
- status-bridge
|
|
profiles:
|
|
- backend
|
|
- monitoring
|
|
- account-creation
|
|
status-account-creation:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: account-creation
|
|
command: 'python create_account.py'
|
|
depends_on:
|
|
- status-backend
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./accounts:/app/accounts
|
|
networks:
|
|
- status-bridge
|
|
profiles:
|
|
- account-creation
|
|
status-monitor:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: message-processing
|
|
depends_on:
|
|
- status-backend
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
STATUS_BACKEND_HOST: status-backend
|
|
volumes:
|
|
- ./accounts:/app/accounts
|
|
profiles:
|
|
- monitoring
|
|
networks:
|
|
- status-bridge
|
|
|
|
networks:
|
|
status-bridge:
|
|
name: status-bridge
|
|
driver: bridge
|