Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '2.1'
- services:
- homeassistant:
- container_name: homeassistant
- image: homeassistant/raspberrypi3-homeassistant:latest
- network_mode: "host"
- volumes:
- - /opt/homeassistant:/config
- - /etc/localtime:/etc/localtime:ro
- - /etc/letsencrypt:/etc/letsencrypt:ro
- restart: on-failure
- healthcheck:
- test: ["CMD", "curl", "-f", "http://127.0.0.1:8123"]
- interval: 30s
- timeout: 10s
- retries: 6
- portainer:
- container_name: portainer
- image: portainer/portainer
- ports:
- - 9000:9000
- volumes:
- - /opt/portainer:/data:rw
- - /var/run/docker.sock:/var/run/docker.sock
- restart: "no" # because the exit code(s) are wrong
- organizr:
- container_name: organizr
- image: lsioarmhf/organizr
- ports:
- - 80:80
- - 443:443
- volumes:
- - /opt/organizr:/config:rw
- - /etc/letsencrypt:/etc/letsencrypt:ro
- environment:
- - PGID=1000
- - PUID=1000
- restart: on-failure
- healthcheck:
- test: ["CMD", "curl", "-f", "http://127.0.0.1"]
- interval: 30s
- timeout: 10s
- retries: 5
- dockermon:
- container_name: dockermon
- image: tribunex/ha-dockermon-pi
- ports:
- - 8126:8126
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock
- - /opt/dockermon:/config
- restart: on-failure
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement