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