Explorar el Código

Update README.md - sample yml needed expose option

Example docker-compose.yml does not work without defining an exposed port for whoami service.
kylegoetz hace 6 años
padre
commit
e014065d9e
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      README.md

+ 2 - 0
README.md

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