1
0
mirror of https://github.com/thib8956/nginx-proxy synced 2025-02-24 09:48:14 +00: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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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