mirror of
https://github.com/docker/compose.git
synced 2025-08-31 06:28:11 +02:00
9 lines
266 B
YAML
9 lines
266 B
YAML
version: "3"
|
|
services:
|
|
my-alpine:
|
|
image: alpine:3.12
|
|
container_name: alpine
|
|
entrypoint: 'echo It works!'
|
|
build:
|
|
context: /this/path/doesnt/exist # and we don't really care. We just want to run containers already pulled.
|