9 lines
166 B
YAML
9 lines
166 B
YAML
version: '3'
|
|
|
|
services:
|
|
hello_world:
|
|
image: alpine:latest
|
|
volumes:
|
|
- ./hello-world.sh:/opt/hello-world.sh:ro
|
|
command: /bin/sh /opt/hello-world.sh
|