Files
status-python-sdk/docker-compose.yaml
T
Nick Ninov d7e5f65d6f create_account: Dockerfile
- 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`
2026-03-05 18:06:39 +00:00

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