-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.test.yml
More file actions
61 lines (58 loc) · 1.54 KB
/
Copy pathdocker-compose.test.yml
File metadata and controls
61 lines (58 loc) · 1.54 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
60
61
services:
db:
image: postgres:15-alpine
environment:
POSTGRES_DB: coolify
POSTGRES_USER: coolify
POSTGRES_PASSWORD: coolify
healthcheck:
test: ["CMD-SHELL", "pg_isready -U coolify"]
interval: 3s
timeout: 5s
retries: 10
volumes:
- coolify-test-db:/var/lib/postgresql/data
redis:
image: redis:7-alpine
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 3s
timeout: 5s
retries: 10
coolify:
image: ghcr.io/coollabsio/coolify:latest
ports:
- "${COOLIFY_TEST_PORT:-8099}:8080"
environment:
APP_NAME: "Coolify"
APP_ENV: production
APP_DEBUG: "false"
TELESCOPE_ENABLED: "false"
APP_ID: "test-integration-id-1234567890abcdef"
APP_KEY: "base64:MUScccH4Baj16/FXv2FjY0t6U5fse9zivTxus2AC7XI="
APP_URL: "http://localhost:8099"
DB_CONNECTION: pgsql
DB_HOST: db
DB_PORT: "5432"
DB_DATABASE: coolify
DB_USERNAME: coolify
DB_PASSWORD: coolify
REDIS_HOST: redis
REDIS_PORT: "6379"
REDIS_PASSWORD: ""
PUSHER_APP_ID: "test-pusher-id"
PUSHER_APP_KEY: "test-pusher-key"
PUSHER_APP_SECRET: "test-pusher-secret"
AUTOUPDATE: "false"
SELF_HOSTED: "true"
IS_REGISTRATION_ENABLED: "true"
ROOT_USERNAME: "admin"
ROOT_USER_EMAIL: "test@gmail.com"
ROOT_USER_PASSWORD: "Xk9#mPqL2vNw!oRz"
depends_on:
db:
condition: service_healthy
redis:
condition: service_healthy
volumes:
coolify-test-db: