Files
coolify-examples/docker-compose-test/docker-compose-weird.yaml
2024-08-29 11:32:08 +02:00

20 lines
354 B
YAML

name: stream
services:
foo:
image: busybox
command: echo "I'm running ${COMPOSE_PROJECT_NAME}"
restart: no
web:
image: nginx:latest
cap_add:
- ALL
ports:
- "8888:80"
annotations:
com.example.foo: bar
db:
image: postgres:16
environment:
POSTGRES_USER: example
POSTGRES_DB: exampledb