Skip to content

Commit facbd9a

Browse files
committed
Merge branch 'next' of github.com:coollabsio/coolify into next
2 parents a0532af + 3fd3660 commit facbd9a

File tree

2 files changed

+25
-8
lines changed

2 files changed

+25
-8
lines changed

templates/compose/getoutline.yaml

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ services:
1515
redis:
1616
condition: service_healthy
1717
environment:
18+
- SERVICE_FQDN_OUTLINE_3000
1819
- NODE_ENV=production
1920
- SECRET_KEY=${SERVICE_BASE64_OUTLINE}
2021
- UTILS_SECRET=${SERVICE_PASSWORD_64_OUTLINE}
@@ -56,11 +57,9 @@ services:
5657
- GITHUB_APP_NAME=${GITHUB_APP_NAME}
5758
- GITHUB_APP_ID=${GITHUB_APP_ID}
5859
- GITHUB_APP_PRIVATE_KEY=${GITHUB_APP_PRIVATE_KEY}
60+
- PGSSLMODE=${PGSSLMODE:-disable}
5961
healthcheck:
60-
test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:3000"]
61-
interval: 5s
62-
timeout: 20s
63-
retries: 10
62+
disable: true
6463

6564
redis:
6665
image: redis:alpine
@@ -87,6 +86,20 @@ services:
8786
timeout: 20s
8887
retries: 3
8988

90-
volumes:
91-
storage-data:
92-
database-data:
89+
https-portal:
90+
image: steveltn/https-portal:latest
91+
links:
92+
- outline
93+
restart: always
94+
volumes:
95+
- https-portal-data:/var/lib/https-portal
96+
healthcheck:
97+
test: ["CMD", "service", "nginx", "status"]
98+
interval: 30s
99+
timeout: 20s
100+
retries: 3
101+
environment:
102+
- DOMAINS='${SERVICE_FQDN_OUTLINE_3000} -> ${SERVICE_FQDN_OUTLINE_3000}:${OUTLINE_PORT:-3000}'
103+
- STAGE='production'
104+
- WEBSOCKET='true'
105+
- CLIENT_MAX_BODY_SIZE='0'

templates/service-templates.json

Lines changed: 5 additions & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)