-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (27 loc) · 800 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (27 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: '3.8'
services:
heating-controller:
image: ghcr.io/kaninfod/heating_controller:latest # Replace with your repo name
container_name: heating-controller
restart: unless-stopped
ports:
- "8321:8321"
environment:
- PYTHONUNBUFFERED=1
- ENVIRONMENT=production # Set your environment
# Mount only config/data, not source code
volumes:
- /home/pi/heating_controller/config:/app/config
- /home/pi/heating_controller/data:/app/data
networks:
- unified_network
logging:
driver: syslog
options:
syslog-address: "udp://192.168.68.102:514"
tag: "HEATING"
syslog-facility: "daemon"
syslog-format: "rfc5424"
networks:
unified_network:
external: true