mirror of
https://github.com/containers/podman-compose.git
synced 2025-01-26 15:59:16 +01:00
23 lines
633 B
YAML
23 lines
633 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
test_build_labels_map:
|
||
|
build:
|
||
|
context: ./context
|
||
|
dockerfile: Dockerfile
|
||
|
labels:
|
||
|
com.example.description: "Accounting webapp"
|
||
|
com.example.department: "Finance"
|
||
|
com.example.label-with-empty-value: ""
|
||
|
image: my-busybox-build-labels-map
|
||
|
command: env
|
||
|
test_build_labels_array:
|
||
|
build:
|
||
|
context: ./context
|
||
|
dockerfile: Dockerfile
|
||
|
labels:
|
||
|
- "com.example.description=Accounting webapp"
|
||
|
- "com.example.department=Finance"
|
||
|
- "com.example.label-with-empty-value"
|
||
|
image: my-busybox-build-labels-array
|
||
|
command: env
|