Compare commits

...

2 Commits

4 changed files with 12 additions and 5 deletions

View File

@ -20,4 +20,4 @@ dm.guiotte.fr. IN A 192.168.1.2
money.guiotte.fr. IN CNAME dm.guiotte.fr. money.guiotte.fr. IN CNAME dm.guiotte.fr.
photos.guiotte.fr. IN CNAME dm.guiotte.fr. photos.guiotte.fr. IN CNAME dm.guiotte.fr.
dl.guiotte.fr. IN CNAME dm.guiotte.fr. dl.guiotte.fr. IN CNAME dm.guiotte.fr.
kdoc-testing.guiotte.fr. IN CNAME dm.guiotte.fr. kdoc.guiotte.fr. IN CNAME dm.guiotte.fr.

Binary file not shown.

View File

@ -1,12 +1,10 @@
version: '3.4'
x-common-environment: &common-environment x-common-environment: &common-environment
PUID: 1000 PUID: 1000
PGID: 1000 PGID: 1000
TZ: Europe/Helsinki TZ: Europe/Helsinki
services:
services:
bind9: bind9:
image: ubuntu/bind9:9.18-22.04_beta image: ubuntu/bind9:9.18-22.04_beta
container_name: bind9 container_name: bind9
@ -20,6 +18,7 @@ services:
ports: ports:
- "53:53/udp" - "53:53/udp"
swag: swag:
image: lscr.io/linuxserver/swag image: lscr.io/linuxserver/swag
container_name: swag container_name: swag
@ -39,6 +38,7 @@ services:
- 443:443 - 443:443
- 80:80 - 80:80
ddclient: ddclient:
image: lscr.io/linuxserver/ddclient:latest image: lscr.io/linuxserver/ddclient:latest
container_name: ddclient container_name: ddclient
@ -46,6 +46,8 @@ services:
environment: *common-environment environment: *common-environment
volumes: volumes:
- ./ddclient:/config - ./ddclient:/config
- ddclient-cache:/var/cache/ddclient
money: money:
image: ihatemoney/ihatemoney image: ihatemoney/ihatemoney
@ -79,6 +81,7 @@ services:
- transmission-user - transmission-user
- transmission-pw - transmission-pw
# WIP # WIP
# radarr: # radarr:
# image: lscr.io/linuxserver/radarr:latest # image: lscr.io/linuxserver/radarr:latest
@ -147,6 +150,7 @@ services:
secrets: secrets:
- lychee-db-pw - lychee-db-pw
# WIP # WIP
# zotero: # zotero:
# #image: lscr.io/linuxserver/nginx:latest # #image: lscr.io/linuxserver/nginx:latest
@ -198,6 +202,8 @@ services:
image: lscr.io/linuxserver/nextcloud:latest image: lscr.io/linuxserver/nextcloud:latest
container_name: nextcloud container_name: nextcloud
restart: unless-stopped restart: unless-stopped
depends_on:
- nextcloud-db
environment: *common-environment environment: *common-environment
volumes: volumes:
- nextcloud-config:/config - nextcloud-config:/config
@ -233,6 +239,7 @@ volumes:
nextcloud-data: nextcloud-data:
nextcloud-config: nextcloud-config:
nextcloud-db-config: nextcloud-db-config:
ddclient-cache:
secrets: secrets:

View File

@ -17,7 +17,7 @@ server {
listen 443 ssl; listen 443 ssl;
listen [::]:443 ssl; listen [::]:443 ssl;
server_name kdoc-testing.*; server_name kdoc.*;
include /config/nginx/ssl.conf; include /config/nginx/ssl.conf;