-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.coolify.yaml
More file actions
59 lines (58 loc) · 2.07 KB
/
Copy pathcompose.coolify.yaml
File metadata and controls
59 lines (58 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
services:
app:
build:
context: .
dockerfile: docker/Dockerfile
ports:
- "${APP_PORT:-80}:80"
environment:
APP_PORT: "${APP_PORT:-80}"
APP_NAME: "${APP_NAME:-Systems Control}"
APP_ENV: "${APP_ENV:-production}"
APP_KEY: "${APP_KEY}"
APP_DEBUG: "${APP_DEBUG:-false}"
APP_URL: "${APP_URL}"
APP_LOCALE: "${APP_LOCALE:-pt_BR}"
APP_FALLBACK_LOCALE: "${APP_FALLBACK_LOCALE:-pt_BR}"
APP_FAKER_LOCALE: "${APP_FAKER_LOCALE:-pt_BR}"
APP_MAINTENANCE_DRIVER: "${APP_MAINTENANCE_DRIVER:-file}"
BCRYPT_ROUNDS: "${BCRYPT_ROUNDS:-12}"
LOG_CHANNEL: "${LOG_CHANNEL:-stack}"
LOG_STACK: "${LOG_STACK:-single}"
LOG_LEVEL: "${LOG_LEVEL:-error}"
DB_CONNECTION: "${DB_CONNECTION:-pgsql}"
DB_HOST: "${DB_HOST}"
DB_PORT: "${DB_PORT:-5432}"
DB_DATABASE: "${DB_DATABASE}"
DB_USERNAME: "${DB_USERNAME}"
DB_PASSWORD: "${DB_PASSWORD}"
SESSION_DRIVER: "${SESSION_DRIVER:-database}"
SESSION_LIFETIME: "${SESSION_LIFETIME:-120}"
BROADCAST_CONNECTION: "${BROADCAST_CONNECTION:-log}"
FILESYSTEM_DISK: "${FILESYSTEM_DISK:-local}"
QUEUE_CONNECTION: "${QUEUE_CONNECTION:-database}"
CACHE_STORE: "${CACHE_STORE:-database}"
MONITORING_API_TOKEN: "${MONITORING_API_TOKEN}"
REDIS_HOST: "${REDIS_HOST:-127.0.0.1}"
REDIS_PASSWORD: "${REDIS_PASSWORD:-}"
REDIS_PORT: "${REDIS_PORT:-6379}"
MAIL_MAILER: "${MAIL_MAILER:-log}"
MAIL_HOST: "${MAIL_HOST:-127.0.0.1}"
MAIL_PORT: "${MAIL_PORT:-2525}"
MAIL_USERNAME: "${MAIL_USERNAME}"
MAIL_PASSWORD: "${MAIL_PASSWORD}"
MAIL_FROM_ADDRESS: "${MAIL_FROM_ADDRESS:-hello@example.com}"
MAIL_FROM_NAME: "${MAIL_FROM_NAME:-Systems Control}"
VITE_APP_NAME: "${VITE_APP_NAME:-Systems Control}"
volumes:
- app-storage:/var/www/html/storage
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/up"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
volumes:
app-storage:
driver: local