mirror of
https://github.com/status-im/status-python-sdk.git
synced 2026-08-31 06:01:19 +00:00
- Create Status App account only with Dockerfile - Add different docker-compose running profile - Update documentation - Config `bot_name` is optional. You can specify the bot name in `.env`
57 lines
1.4 KiB
YAML
57 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
|
|
networks:
|
|
- status-bridge
|
|
profiles:
|
|
- backend
|
|
- monitoring
|
|
- account-creation
|
|
status-account-creation:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.account_creation
|
|
container_name: account-creation
|
|
depends_on:
|
|
- status-backend
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./accounts:/app/accounts
|
|
networks:
|
|
- status-bridge
|
|
profiles:
|
|
- account-creation
|
|
status-monitor:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.monitoring
|
|
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
|