Files
home-automation/docker-compose.yml
T

13 lines
242 B
YAML
Raw Normal View History

2026-04-19 20:19:58 +02:00
services:
app:
2026-04-20 20:40:04 +02:00
container_name: home-automation-app
2026-04-19 20:19:58 +02:00
build: .
2026-04-20 20:40:04 +02:00
user: "1000:1000"
restart: unless-stopped
init: true
2026-04-19 20:19:58 +02:00
ports:
2026-04-20 20:40:04 +02:00
- "127.0.0.1:8881:8000"
2026-04-19 20:19:58 +02:00
volumes:
- ./data:/app/data
2026-04-20 20:40:04 +02:00
- ./.env:/app/.env:ro