mirror of https://github.com/docker/compose.git
13 lines
198 B
YAML
13 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'
|