9 lines
210 B
YAML
9 lines
210 B
YAML
|
|
services:
|
||
|
|
test:
|
||
|
|
image: ubuntu:22.04
|
||
|
|
entrypoint: sh -c
|
||
|
|
command: ["while :; do sleep 1; done"]
|
||
|
|
volumes:
|
||
|
|
- ../config/config-file.txt:/config-file.txt
|
||
|
|
- ./test-file.txt:/test-file.txt
|