mirror of
https://github.com/docker/compose.git
synced 2026-07-10 10:14:13 +00:00
12 lines
198 B
YAML
12 lines
198 B
YAML
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
expose:
|
|
- '80'
|
|
- '443'
|
|
- '8080'
|
|
busybox:
|
|
image: busybox
|
|
command: busybox httpd -f -p 8000
|
|
ports:
|
|
- '127.0.0.1:8001:8000'
|