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

View File

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