[BUGFIX] Fix indenting on lite compose bundle (#851)

docker-compose up -d no longer complains about the public service because of wrong indentation
pull/849/head^2
Valentin Höbel 2020-04-10 16:12:21 +02:00 committed by GitHub
parent bb1158b91e
commit a20faec1fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 15 deletions

View File

@ -93,18 +93,18 @@ services:
- 80 - 80
restart: unless-stopped restart: unless-stopped
public: public:
image: containous/whoami image: containous/whoami
container_name: public container_name: public
networks: networks:
- net - net
labels: labels:
- 'traefik.enable=true' - 'traefik.enable=true'
- 'traefik.http.routers.public.rule=Host(`public.example.com`)' - 'traefik.http.routers.public.rule=Host(`public.example.com`)'
- 'traefik.http.routers.public.entrypoints=https' - 'traefik.http.routers.public.entrypoints=https'
- 'traefik.http.routers.public.tls=true' - 'traefik.http.routers.public.tls=true'
- 'traefik.http.routers.public.tls.certresolver=letsencrypt' - 'traefik.http.routers.public.tls.certresolver=letsencrypt'
- 'traefik.http.routers.public.middlewares=authelia@docker' - 'traefik.http.routers.public.middlewares=authelia@docker'
expose: expose:
- 80 - 80
restart: unless-stopped restart: unless-stopped