mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-03 09:50:26 +00:00
12 lines
122 B
YAML
12 lines
122 B
YAML
version: "3"
|
|
|
|
services:
|
|
|
|
www:
|
|
image: nginx
|
|
volumes:
|
|
- ".:/usr/share/nginx/html"
|
|
ports:
|
|
- "8888:80"
|
|
|