mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
20 lines
354 B
YAML
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
|