cdb/docker-compose.yml

31 lines
657 B
YAML
Raw Normal View History

2024-01-14 02:57:13 +00:00
version: '3'
services:
2024-08-28 20:03:39 +00:00
cdb:
build: .
ports:
- "8080:8080"
depends_on:
2024-10-07 18:53:58 +00:00
- postgres
2024-08-28 20:03:39 +00:00
volumes:
- ./itemdb/items:/itemdb
2024-09-08 00:37:39 +00:00
- ./locations:/locations
2024-09-12 08:34:14 +00:00
- ./flows:/flows
2024-09-08 00:37:39 +00:00
- ./config.toml:/config.toml
2024-08-28 20:03:39 +00:00
environment:
2024-10-07 18:53:58 +00:00
- "DATABASE_URL=postgres://user:pass@postgres/cdb"
2024-08-28 20:03:39 +00:00
- "RUST_LOG=debug"
- "ROCKET_ADDRESS=0.0.0.0"
- "ROCKET_PORT=8080"
2024-01-14 02:57:13 +00:00
2024-10-07 18:53:58 +00:00
postgres:
image: timescale/timescaledb:latest-pg16
restart: always
2024-01-14 02:57:13 +00:00
ports:
2024-10-07 18:53:58 +00:00
- 5432:5432
2024-01-14 02:57:13 +00:00
volumes:
2024-10-07 18:53:58 +00:00
- ./db:/var/lib/postgresql/data/
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=pass
- POSTGRES_DB=cdb