1
0
Fork 0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-05-24 16:36:11 +02:00

Update README.md - sample yml needed expose option

Example docker-compose.yml does not work without defining an exposed port for whoami service.
This commit is contained in:
kylegoetz 2018-10-24 09:50:28 -05:00 committed by GitHub
parent e80fc0b304
commit e014065d9e
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,6 +51,8 @@ services:
whoami:
image: jwilder/whoami
expose:
- "8000"
environment:
- VIRTUAL_HOST=whoami.local
```