From 343791b6570588c369d06a5d1027166b235ababd Mon Sep 17 00:00:00 2001 From: Brikou CARRE Date: Sat, 12 Aug 2017 07:37:05 +0200 Subject: [PATCH] Simplify docker-compose.yml example Remove `container_name` as not required --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index c3f7643..6e3383c 100644 --- a/README.md +++ b/README.md @@ -39,10 +39,10 @@ This image is based on the nginx:alpine image. Use this image to fully support H ```yaml version: '2' + services: nginx-proxy: image: jwilder/nginx-proxy - container_name: nginx-proxy ports: - "80:80" volumes: @@ -50,7 +50,6 @@ services: whoami: image: jwilder/whoami - container_name: whoami environment: - VIRTUAL_HOST=whoami.local ```