Fix quotes

This commit is contained in:
Jake Howard 2021-01-09 18:32:16 +00:00
parent 1b72afdd29
commit 721bdf60b3
Signed by: jake
GPG Key ID: 57AFB45680EDD477
9 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
expose_ssh: true
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

View File

@ -55,4 +55,4 @@ services:
tmpfs:
- /config/logs
ports:
- "8222:2222"
- 8222:2222

View File

@ -9,7 +9,7 @@ services:
- GF_RENDERING_SERVER_URL=http://renderer:8081/render
- GF_RENDERING_CALLBACK_URL=http://grafana:3000/
volumes:
- "./grafana:/var/lib/grafana"
- ./grafana:/var/lib/grafana
restart: unless-stopped
depends_on:
- db

View File

@ -9,7 +9,7 @@ services:
- TZ=Europe/London
restart: unless-stopped
volumes:
- "./config:/config"
- ./config:/config
labels:
- traefik.enable=true
- traefik.http.routers.heimdall.rule=Host(`jakehoward.tech`)

View File

@ -8,7 +8,7 @@ services:
- TZ=Europe/London
restart: unless-stopped
volumes:
- "./calibre:/config"
- ./calibre:/config
- /mnt/tank/files/ebooks:/books:ro
labels:
- traefik.enable=true

View File

@ -9,8 +9,8 @@ services:
- TZ=Europe/London
- DOCKER_MODS=theorangeone/lsio-mod-more-processes:latest
volumes:
- "./nextcloud/apps:/config/www/nextcloud/apps"
- "./nextcloud/config.php:/config/www/nextcloud/config/config.php"
- ./nextcloud/apps:/config/www/nextcloud/apps
- ./nextcloud/config.php:/config/www/nextcloud/config/config.php
- /mnt/tank/files/nextcloud:/data
- /mnt/tank/files:/mnt/files
restart: unless-stopped

View File

@ -17,7 +17,7 @@ services:
depends_on:
- db
ports:
- "4242:4242"
- 4242:4242
db:
image: postgres:12-alpine

View File

@ -8,8 +8,8 @@ services:
- PGID={{ docker_user.id }}
- TZ=Europe/London
volumes:
- "./tt-rss/config.php:/config/config.php:ro"
- "./tt-rss/feed-icons:/config/feed-icons"
- ./tt-rss/config.php:/config/config.php:ro
- ./tt-rss/feed-icons:/config/feed-icons
- ./plugins:/config/plugins.local
restart: unless-stopped
labels:

View File

@ -8,8 +8,8 @@ services:
- SYMFONY__ENV__SECRET={{ wallabag_secret }}
- SYMFONY__ENV__DOMAIN_NAME=https://wallabag.jakehoward.tech
volumes:
- "./wallabag/data:/var/www/wallabag/data"
- "./wallabag/images:/var/www/wallabag/images"
- ./wallabag/data:/var/www/wallabag/data
- ./wallabag/images:/var/www/wallabag/images
labels:
- traefik.enable=true
- traefik.http.routers.wallabag.rule=Host(`wallabag.jakehoward.tech`)