From 8c733abef38735d802e19cc998ce6eee2fc0bd2b Mon Sep 17 00:00:00 2001 From: Andrei Korigodski Date: Wed, 1 Aug 2018 12:22:03 +0300 Subject: [PATCH] Fix style in examples/quickstart --- examples/quickstart/docker-compose.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/quickstart/docker-compose.yml b/examples/quickstart/docker-compose.yml index f31f5d408..bd1c8a202 100644 --- a/examples/quickstart/docker-compose.yml +++ b/examples/quickstart/docker-compose.yml @@ -1,18 +1,18 @@ version: '3' services: - #The reverse proxy service (Træfik) + # The reverse proxy service (Træfik) reverse-proxy: - image: traefik #The official Traefik docker image - command: --api --docker #Enables the web UI and tells Træfik to listen to docker + image: traefik # The official Traefik docker image + command: --api --docker # Enables the web UI and tells Træfik to listen to docker ports: - - "80:80" #The HTTP port - - "8080:8080" #The Web UI (enabled by --api) + - "80:80" # The HTTP port + - "8080:8080" # The Web UI (enabled by --api) volumes: - - /var/run/docker.sock:/var/run/docker.sock #So that Traefik can listen to the Docker events + - /var/run/docker.sock:/var/run/docker.sock # So that Traefik can listen to the Docker events - #A container that exposes a simple API + # A container that exposes a simple API whoami: - image: emilevauge/whoami #A container that exposes an API to show it's IP address + image: emilevauge/whoami # A container that exposes an API to show it's IP address labels: - - "traefik.frontend.rule=Host:whoami.docker.localhost" \ No newline at end of file + - "traefik.frontend.rule=Host:whoami.docker.localhost"