1
0
Fork 0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-05-22 07:26:09 +02:00

Simplify docker-compose.yml example

Remove `container_name` as not required
This commit is contained in:
Brikou CARRE 2017-08-12 07:37:05 +02:00 committed by GitHub
parent 6bdd184d6a
commit 343791b657

View File

@ -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
```