Files
coolify-examples/docker-compose/docker-compose.yaml
🏔️ Peak 8d983d2192 feat: test
2026-01-15 13:41:14 +01:00

26 lines
492 B
YAML

services:
api.test:
build:
context: .
dockerfile: Dockerfile
args:
TEST: "${TEST}"
ports:
- "3000"
environment:
- FQDN=${SERVICE_FQDN_API}
- PORT=3000
- DB_CONNECTION=postgres
- TEST=${TEST}
- TEST_PASSWORD=${SERVICE_PASSWORD_TEST}
database-prod:
image: postgres:14-alpine
environment:
- POSTGRES_DB=database
- POSTGRES_PASSWORD=password
db:
image: nginx
another-api:
image: nginx