kompose/examples/docker-compose-loadbalancer-with-mixed-protocols.yaml
namusyaka 119f0b8f70
Follow up on #1341 (#1344)
* mv d.yaml to examples

* rephrase debug log messages a bit
2020-11-04 08:26:15 +08:00

14 lines
237 B
YAML

version: "2"
services:
nginx:
image: nginx
build: ./foobar
ports:
- "6060:6060/udp"
- "5000:5000"
cap_add:
- ALL
container_name: foobar
labels:
kompose.service.type: loadbalancer