forked from LaconicNetwork/kompose
* feat: add the host port to containers * test(unit): add unit tests for host port and protocol * test(functional): add functional tests of host port and protocol * test(functional): add functional tests of host port and protocol for openshift
11 lines
145 B
YAML
11 lines
145 B
YAML
version: "3.3"
|
|
|
|
services:
|
|
nginx:
|
|
ports:
|
|
- target: 80
|
|
published: 80
|
|
protocol: tcp
|
|
mode: host
|
|
image: nginx
|