mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
18 lines
353 B
YAML
18 lines
353 B
YAML
services:
|
|
app:
|
|
image: nginx
|
|
environment:
|
|
SERVICE_FQDN_APP: /app
|
|
APP_KEY: base64
|
|
APP_DEBUG: '${APP_DEBUG:-false}'
|
|
APP_URL: $SERVICE_FQDN_APP
|
|
volumes:
|
|
- './:/var/www/html'
|
|
- './nginx:/etc/nginx'
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
networks:
|
|
default:
|
|
ipv4_address: 127.0.0.1
|