mirror of https://github.com/docker/compose.git
9 lines
267 B
YAML
9 lines
267 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
my-alpine:
|
||
|
image: alpine:3.12
|
||
|
container_name: alpine
|
||
|
entrypoint: 'echo It works!'
|
||
|
build:
|
||
|
context: /this/path/doesnt/exists # and we don't really care. We just want to run containers already pulled.
|