23 lines
423 B
YAML
23 lines
423 B
YAML
version: '3'
|
|
services:
|
|
app:
|
|
container_name: homeassistant-app
|
|
image: "homeassistant/home-assistant"
|
|
volumes:
|
|
- app_config:/config
|
|
- /etc/localtime:/etc/localtime:ro
|
|
restart: unless-stopped
|
|
networks:
|
|
has:
|
|
reverseproxy_public:
|
|
ports:
|
|
- 8080:80
|
|
- 5683:5683/udp # SELLY INTEGRATION
|
|
volumes:
|
|
app_config:
|
|
networks:
|
|
has:
|
|
reverseproxy_public:
|
|
external: true
|
|
|