mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-03 01:40:19 +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"
|
|
|