Compare commits
2 Commits
5dc92fba3a
...
b75e78f19b
Author | SHA1 | Date | |
---|---|---|---|
b75e78f19b | |||
90b82537f1 |
11
homeassistant/docker-compose.yml
Normal file
11
homeassistant/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
services:
|
||||||
|
homeassistant:
|
||||||
|
container_name: homeassistant
|
||||||
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
||||||
|
volumes:
|
||||||
|
- /opt/homeassistant/config:/config
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /run/dbus:/run/dbus:ro
|
||||||
|
restart: unless-stopped
|
||||||
|
privileged: true
|
||||||
|
network_mode: host
|
11
nginx-proxy-manager/docker-compose.yml
Normal file
11
nginx-proxy-manager/docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
services:
|
||||||
|
app:
|
||||||
|
image: 'jc21/nginx-proxy-manager:latest'
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- '80:80' # Public HTTP Port
|
||||||
|
- '443:443' # Public HTTPS Port
|
||||||
|
- '81:81' # Admin Web Port
|
||||||
|
volumes:
|
||||||
|
- /home/pim/nginx/data:/data
|
||||||
|
- /home/pim/nginx/letsencrypt:/etc/letsencrypt
|
Reference in New Issue
Block a user