mirror of
https://github.com/docker/compose.git
synced 2025-08-31 14:38:12 +02:00
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'
|