added array of config files
parent
0043041c81
commit
37d74c1586
@ -0,0 +1,16 @@
|
||||
version: "3"
|
||||
services:
|
||||
nginx-proxy-manager:
|
||||
labels:
|
||||
ie.cianhatton.backup.enabled: "true"
|
||||
image: jlesage/nginx-proxy-manager
|
||||
container_name: nginx-proxy-manager
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8181:8181
|
||||
- 80:8080
|
||||
- 443:4443
|
||||
volumes:
|
||||
- "data:/config:rw"
|
||||
volumes:
|
||||
data:
|
||||
@ -0,0 +1,19 @@
|
||||
# Listen on all addresses available, port 1337
|
||||
listenAddressSingleHTTPFrontend: 0.0.0.0:1337
|
||||
# Choose from INFO (default), WARN and DEBUG
|
||||
logLevel: "INFO"
|
||||
# Actions (buttons) to show up on the WebUI:
|
||||
actions:
|
||||
# Docs: https://docs.olivetin.app/action-container-control.html
|
||||
- title: Restart Plex
|
||||
icon: plex
|
||||
shell: docker restart plex
|
||||
timeout: 30
|
||||
- title: Restart Dashy
|
||||
icon: restart
|
||||
shell: docker restart dashy
|
||||
timeout: 30
|
||||
- title: Restart Olivetin
|
||||
icon: restart
|
||||
shell: docker restart olivetin
|
||||
timeout: 30
|
||||
@ -0,0 +1,12 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
olivetin:
|
||||
container_name: olivetin
|
||||
image: jamesread/olivetin
|
||||
user: root
|
||||
volumes:
|
||||
- /etc/config/olivetin:/config
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
ports:
|
||||
- "1337:1337"
|
||||
restart: unless-stopped
|
||||
Loading…
Reference in New Issue