forked from LaconicNetwork/kompose
now args provided under build in docker-compose file can be available in buildconfig. it solves #406 Added unit test and functional test solves #445 Separated key:"value" pairs by spaces
17 lines
287 B
YAML
17 lines
287 B
YAML
version: "2"
|
|
|
|
services:
|
|
foo:
|
|
build:
|
|
context: "./build"
|
|
args:
|
|
NAME: web
|
|
command: "sleep 3600"
|
|
foo1:
|
|
build:
|
|
context: "./build"
|
|
args:
|
|
- NAME=web
|
|
- foo
|
|
command: "sleep 3600"
|