Fix quotes
This commit is contained in:
parent
1b72afdd29
commit
721bdf60b3
9 changed files with 12 additions and 12 deletions
|
@ -1,4 +1,4 @@
|
||||||
expose_ssh: true
|
expose_ssh: true
|
||||||
traefik_private_ip: "{{ ansible_default_ipv4.address }}"
|
traefik_private_ip: "{{ ansible_default_ipv4.address }}"
|
||||||
|
|
||||||
traefik_proxy_protocol_trusted_ips: "10.23.0.0/16"
|
traefik_proxy_protocol_trusted_ips: 10.23.0.0/16
|
||||||
|
|
|
@ -55,4 +55,4 @@ services:
|
||||||
tmpfs:
|
tmpfs:
|
||||||
- /config/logs
|
- /config/logs
|
||||||
ports:
|
ports:
|
||||||
- "8222:2222"
|
- 8222:2222
|
||||||
|
|
|
@ -9,7 +9,7 @@ services:
|
||||||
- GF_RENDERING_SERVER_URL=http://renderer:8081/render
|
- GF_RENDERING_SERVER_URL=http://renderer:8081/render
|
||||||
- GF_RENDERING_CALLBACK_URL=http://grafana:3000/
|
- GF_RENDERING_CALLBACK_URL=http://grafana:3000/
|
||||||
volumes:
|
volumes:
|
||||||
- "./grafana:/var/lib/grafana"
|
- ./grafana:/var/lib/grafana
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
|
|
|
@ -9,7 +9,7 @@ services:
|
||||||
- TZ=Europe/London
|
- TZ=Europe/London
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- "./config:/config"
|
- ./config:/config
|
||||||
labels:
|
labels:
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.routers.heimdall.rule=Host(`jakehoward.tech`)
|
- traefik.http.routers.heimdall.rule=Host(`jakehoward.tech`)
|
||||||
|
|
|
@ -8,7 +8,7 @@ services:
|
||||||
- TZ=Europe/London
|
- TZ=Europe/London
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- "./calibre:/config"
|
- ./calibre:/config
|
||||||
- /mnt/tank/files/ebooks:/books:ro
|
- /mnt/tank/files/ebooks:/books:ro
|
||||||
labels:
|
labels:
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
|
|
|
@ -9,8 +9,8 @@ services:
|
||||||
- TZ=Europe/London
|
- TZ=Europe/London
|
||||||
- DOCKER_MODS=theorangeone/lsio-mod-more-processes:latest
|
- DOCKER_MODS=theorangeone/lsio-mod-more-processes:latest
|
||||||
volumes:
|
volumes:
|
||||||
- "./nextcloud/apps:/config/www/nextcloud/apps"
|
- ./nextcloud/apps:/config/www/nextcloud/apps
|
||||||
- "./nextcloud/config.php:/config/www/nextcloud/config/config.php"
|
- ./nextcloud/config.php:/config/www/nextcloud/config/config.php
|
||||||
- /mnt/tank/files/nextcloud:/data
|
- /mnt/tank/files/nextcloud:/data
|
||||||
- /mnt/tank/files:/mnt/files
|
- /mnt/tank/files:/mnt/files
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
|
@ -17,7 +17,7 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
ports:
|
ports:
|
||||||
- "4242:4242"
|
- 4242:4242
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: postgres:12-alpine
|
image: postgres:12-alpine
|
||||||
|
|
|
@ -8,8 +8,8 @@ services:
|
||||||
- PGID={{ docker_user.id }}
|
- PGID={{ docker_user.id }}
|
||||||
- TZ=Europe/London
|
- TZ=Europe/London
|
||||||
volumes:
|
volumes:
|
||||||
- "./tt-rss/config.php:/config/config.php:ro"
|
- ./tt-rss/config.php:/config/config.php:ro
|
||||||
- "./tt-rss/feed-icons:/config/feed-icons"
|
- ./tt-rss/feed-icons:/config/feed-icons
|
||||||
- ./plugins:/config/plugins.local
|
- ./plugins:/config/plugins.local
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
labels:
|
labels:
|
||||||
|
|
|
@ -8,8 +8,8 @@ services:
|
||||||
- SYMFONY__ENV__SECRET={{ wallabag_secret }}
|
- SYMFONY__ENV__SECRET={{ wallabag_secret }}
|
||||||
- SYMFONY__ENV__DOMAIN_NAME=https://wallabag.jakehoward.tech
|
- SYMFONY__ENV__DOMAIN_NAME=https://wallabag.jakehoward.tech
|
||||||
volumes:
|
volumes:
|
||||||
- "./wallabag/data:/var/www/wallabag/data"
|
- ./wallabag/data:/var/www/wallabag/data
|
||||||
- "./wallabag/images:/var/www/wallabag/images"
|
- ./wallabag/images:/var/www/wallabag/images
|
||||||
labels:
|
labels:
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
- traefik.http.routers.wallabag.rule=Host(`wallabag.jakehoward.tech`)
|
- traefik.http.routers.wallabag.rule=Host(`wallabag.jakehoward.tech`)
|
||||||
|
|
Loading…
Reference in a new issue