zap-stream-core/crates/zap-stream/docker-compose.yml

32 lines
655 B
YAML
Raw Normal View History

2024-03-26 23:27:18 +00:00
name: zap-stream-core
services:
2024-11-15 15:54:51 +00:00
db:
image: mariadb
2024-03-26 23:27:18 +00:00
environment:
2024-11-15 15:54:51 +00:00
- "MARIADB_ROOT_PASSWORD=root"
2024-03-26 23:27:18 +00:00
ports:
2024-11-15 15:54:51 +00:00
- "3368:3306"
volumes:
2024-11-15 18:26:23 +00:00
- "./dev-setup/db.sql:/docker-entrypoint-initdb.d/00-init.sql"
2024-11-15 15:54:51 +00:00
relay:
2024-11-15 18:26:23 +00:00
image: dockurr/strfry
2024-11-15 15:54:51 +00:00
ports:
2024-11-15 18:26:23 +00:00
- "7766:7777"
volumes:
- "relay:/app/strfry-db"
- "./dev-setup/strfry.conf:/etc/strfry.conf"
blossom:
depends_on:
- db
2025-01-30 11:45:05 +00:00
image: voidic/route96:latest
environment:
- "RUST_LOG=info"
ports:
- "8881:8000"
volumes:
- "blossom:/app/data"
2025-01-30 11:45:05 +00:00
- "./dev-setup/route96.yaml:/app/config.yaml"
2024-11-15 15:54:51 +00:00
volumes:
db:
blossom:
relay: