mirror of
https://github.com/docker/compose.git
synced 2026-09-21 21:14:26 +00:00
8 lines
266 B
YAML
8 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.
|