mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
14 lines
245 B
YAML
14 lines
245 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'
|
|
|
|
|