19 lines
334 B
YAML
19 lines
334 B
YAML
services:
|
|
backend:
|
|
build: ./backend
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
- DATABASE_URL=sqlite:///data/astronome.db
|
|
- RUST_LOG=info
|
|
ports:
|
|
- 3301
|
|
|
|
frontend:
|
|
build: ./frontend
|
|
restart: unless-stopped
|
|
ports:
|
|
- 3300
|
|
depends_on:
|
|
- backend |