This commit is contained in:
2023-11-11 17:46:08 +01:00
parent ee64abfa88
commit 359b6a2219
2 changed files with 30 additions and 30 deletions

View File

@@ -274,36 +274,36 @@ dockerapp_compose:
# Helps eliminate repetition of sections
# More Info on how to use this: https://github.com/htpcBeginner/docker-traefik/pull/228
# Common environment values
x-environment: &default-tz-puid-pgid
TZ: Europe/Paris
PUID: 1000
PGID: 1000
# # Common environment values
# x-environment: &default-tz-puid-pgid
# TZ: Europe/Paris
# PUID: 1000
# PGID: 1000
# Proxy Network and Security
x-network-and-security: &network-and-security
networks:
- t2_proxy
security_opt:
- no-new-privileges:true
# # Proxy Network and Security
# x-network-and-security: &network-and-security
# networks:
# - t2_proxy
# security_opt:
# - no-new-privileges:true
# Keys common to some of the services in basic-services.txt
x-common-keys-core: &common-keys-core
<<: *network-and-security
restart: always
# profiles:
# - basic
# # Keys common to some of the services in basic-services.txt
# x-common-keys-core: &common-keys-core
# <<: *network-and-security
# restart: always
# # profiles:
# # - basic
# Keys common to some of the dependent services/apps
x-common-keys-apps: &common-keys-apps
<<: *network-and-security
restart: unless-stopped
# profiles:
# - apps
# # Keys common to some of the dependent services/apps
# x-common-keys-apps: &common-keys-apps
# <<: *network-and-security
# restart: unless-stopped
# # profiles:
# # - apps
# Keys common to some of the services in media-services.txt
x-common-keys-media: &common-keys-media
<<: *network-and-security
restart: "no"
# profiles:
# - media
# # Keys common to some of the services in media-services.txt
# x-common-keys-media: &common-keys-media
# <<: *network-and-security
# restart: "no"
# # profiles:
# # - media

View File

@@ -1,2 +1,2 @@
# {{ ansible_managed }}
{{ dockerapp_compose | to_nice_yaml(indent=2) }}
{{ dockerapp_compose | to_nice_yaml(indent=3) }}