add some services
This commit is contained in:
17
docker-compose.templates.yml
Normal file
17
docker-compose.templates.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
# While this file is not meant to be deployed directly it is used for "inheritance" of your sevices.
|
||||
# Below you can see a service that I've called "default" which is used as a base definition for other services.
|
||||
# It defines only the most common properties that I need. It does not have the 'image' for example as each extending service will have its own 'image'.
|
||||
# Of course you can have more templates here or even 'extend' them from each other.
|
||||
services:
|
||||
default:
|
||||
restart: unless-stopped
|
||||
security_opt:
|
||||
- no-new-privileges=true
|
||||
environment:
|
||||
TZ: ${TZ}
|
||||
PUID: ${PUID}
|
||||
PGID: ${PGID}
|
||||
logging:
|
||||
options:
|
||||
max-size: "5m"
|
||||
max-file: "3"
|
||||
Reference in New Issue
Block a user