Skip to content

Commit

Permalink
fix: add hyphen to support default Bash syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienPoupa committed Mar 14, 2024
1 parent 623c580 commit ca4ca87
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
- "80:80"
- "443:443"
volumes:
- ${CONFIG_ROOT:.}/letsencrypt:/letsencrypt
- ${CONFIG_ROOT:-.}/letsencrypt:/letsencrypt
- "/var/run/docker.sock:/var/run/docker.sock:ro"
extra_hosts:
- host.docker.internal:172.17.0.1
Expand All @@ -47,7 +47,7 @@ services:
- PGID=${GROUP_ID}
- TZ=${TIMEZONE}
volumes:
- ${CONFIG_ROOT:.}/sonarr:/config
- ${CONFIG_ROOT:-.}/sonarr:/config
- ${DATA_ROOT}:/data
restart: always
healthcheck:
Expand Down Expand Up @@ -77,7 +77,7 @@ services:
- PGID=${GROUP_ID}
- TZ=${TIMEZONE}
volumes:
- ${CONFIG_ROOT:.}/radarr:/config
- ${CONFIG_ROOT:-.}/radarr:/config
- ${DATA_ROOT}:/data
restart: always
healthcheck:
Expand Down Expand Up @@ -107,7 +107,7 @@ services:
- PGID=${GROUP_ID}
- TZ=${TIMEZONE}
volumes:
- ${CONFIG_ROOT:.}/lidarr:/config
- ${CONFIG_ROOT:-.}/lidarr:/config
- ${DATA_ROOT}:/data
restart: always
healthcheck:
Expand Down Expand Up @@ -139,7 +139,7 @@ services:
- PGID=${GROUP_ID}
- TZ=${TIMEZONE}
volumes:
- ${CONFIG_ROOT:.}/bazarr/config:/config
- ${CONFIG_ROOT:-.}/bazarr/config:/config
- ${DATA_ROOT}:/data
restart: always
healthcheck:
Expand Down Expand Up @@ -168,7 +168,7 @@ services:
- LOG_LEVEL=debug
- TZ=${TIMEZONE}
volumes:
- ${CONFIG_ROOT:.}/jellyseerr:/app/config
- ${CONFIG_ROOT:-.}/jellyseerr:/app/config
restart: always
healthcheck:
test: ["CMD", "wget", "http://127.0.0.1:5055/api/v1/status", "-qO", "/dev/null"]
Expand Down Expand Up @@ -238,7 +238,7 @@ services:
- PGID=${GROUP_ID}
- TZ=${TIMEZONE}
volumes:
- ${CONFIG_ROOT:.}/prowlarr:/config
- ${CONFIG_ROOT:-.}/prowlarr:/config
restart: always
healthcheck:
test: [ "CMD", "curl", "--fail", "http://127.0.0.1:9696/prowlarr/ping" ]
Expand Down Expand Up @@ -285,7 +285,7 @@ services:
- WEBUI_PORT=8080
- DOCKER_MODS=ghcr.io/gabe565/linuxserver-mod-vuetorrent
volumes:
- ${CONFIG_ROOT:.}/qbittorrent:/config
- ${CONFIG_ROOT:-.}/qbittorrent:/config
- ${DOWNLOAD_ROOT}:/data/torrents
restart: always
healthcheck:
Expand Down Expand Up @@ -326,8 +326,8 @@ services:
image: thrnz/docker-wireguard-pia
container_name: vpn
volumes:
- ${CONFIG_ROOT:.}/pia:/pia
- ${CONFIG_ROOT:.}/pia-shared:/pia-shared
- ${CONFIG_ROOT:-.}/pia:/pia
- ${CONFIG_ROOT:-.}/pia-shared:/pia-shared
cap_add:
- NET_ADMIN
- SYS_MODULE
Expand Down Expand Up @@ -376,7 +376,7 @@ services:
- PGID=${GROUP_ID}
- TZ=${TIMEZONE}
volumes:
- ${CONFIG_ROOT:.}/sabnzbd:/config
- ${CONFIG_ROOT:-.}/sabnzbd:/config
- ${DATA_ROOT}:/data
restart: always
labels:
Expand Down Expand Up @@ -405,7 +405,7 @@ services:
- TZ=${TIMEZONE}
- JELLYFIN_PublishedServerUrl=${HOSTNAME}/jellyfin
volumes:
- ${CONFIG_ROOT:.}/jellyfin:/config
- ${CONFIG_ROOT:-.}/jellyfin:/config
- ${DATA_ROOT}:/data
ports:
- "7359:7359/udp"
Expand Down Expand Up @@ -442,7 +442,7 @@ services:
- PGID=${GROUP_ID}
- TZ=${TIMEZONE}
volumes:
- ${CONFIG_ROOT:.}/homeassistant:/config
- ${CONFIG_ROOT:-.}/homeassistant:/config
- /etc/localtime:/etc/localtime:ro
- /run/dbus:/run/dbus:ro
restart: always
Expand Down Expand Up @@ -481,7 +481,7 @@ services:
- HOMEPAGE_VAR_WEATHER_TIME=${TIMEZONE}
- HOMEPAGE_VAR_WEATHER_UNIT=${HOMEPAGE_VAR_WEATHER_UNIT}
volumes:
- ${CONFIG_ROOT:.}/homepage:/app/config
- ${CONFIG_ROOT:-.}/homepage:/app/config
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${DATA_ROOT}:/data
restart: always
Expand Down

0 comments on commit ca4ca87

Please sign in to comment.