Update docker-compose.yml

This commit is contained in:
LRVT 2023-02-19 07:06:41 +01:00 committed by GitHub
parent cf53b4f4b7
commit d7109a295d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,12 +3,16 @@ version: '3.3'
services: services:
example: example:
image: user/image:tag image: user/image:tag
container_name: example-container-name container_name: example
hostname: example
#user: 1000:1000
restart: unless-stopped restart: unless-stopped
#ports: ports:
# - 8080:2368 - 8080:8080
volumes: volumes:
- /mnt/docker-volumes/example:/example #- /etc/localtime:/etc/localtime:ro
#- /var/run/docker.sock:/var/run/docker.sock:ro
- /mnt/docker-volumes/example:/opt/example/data
environment: environment:
- PUID=1000 - PUID=1000
- PGID=1000 - PGID=1000
@ -20,7 +24,7 @@ services:
# - traefik.http.routers.CHANGEME.rule=Host(`service.example.com`) # - traefik.http.routers.CHANGEME.rule=Host(`service.example.com`)
# - traefik.http.services.CHANGEME.loadbalancer.server.port=8080 # - traefik.http.services.CHANGEME.loadbalancer.server.port=8080
# - traefik.docker.network=proxy # - traefik.docker.network=proxy
# # Part for local lan services only; disable to expose externally # # Part for optional traefik middlewares
# - traefik.http.routers.CHANGEME.middlewares=local-ipwhitelist@file # - traefik.http.routers.CHANGEME.middlewares=local-ipwhitelist@file
networks: networks: