forked from coollabsio/coolify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request coollabsio#2008 from coollabsio/next
v4.0.0-beta.260
- Loading branch information
Showing
10 changed files
with
97 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<?php | ||
|
||
return '4.0.0-beta.259'; | ||
return '4.0.0-beta.260'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# documentation: https://tolgee.io/ | ||
# slogan: Tolgee is a localization management platform for developers and translators. | ||
# tags: localization,translation,management,platform | ||
# logo: svgs/tolgee.svg | ||
# port: 8080 | ||
|
||
services: | ||
tolgee: | ||
image: tolgee/tolgee | ||
environment: | ||
- SERVICE_FQDN_TOLGEE_8080 | ||
- TOLGEE_AUTHENTICATION_ENABLED=true | ||
- TOLGEE_AUTHENTICATION_INITIAL_PASSWORD=$SERVICE_PASSWORD_TOLGEE | ||
- TOLGEE_AUTHENTICATION_INITIAL_USERNAME=admin | ||
- TOLGEE_AUTHENTICATION_JWT_SECRET=$SERVICE_PASSWORD_JWT | ||
- TOLGEE_POSTGRES_AUTOSTART_ENABLED=false | ||
- SPRING_DATASOURCE_URL=jdbc:postgresql://postgresql:5432/${POSTGRES_DB:-tolgee} | ||
- SPRING_DATASOURCE_USERNAME=${SERVICE_USER_POSTGRESQL} | ||
- SPRING_DATASOURCE_PASSWORD=${SERVICE_PASSWORD_POSTGRESQL} | ||
volumes: | ||
- tolgee-data:/data | ||
healthcheck: | ||
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8080"] | ||
interval: 5s | ||
timeout: 20s | ||
retries: 10 | ||
depends_on: | ||
postgresql: | ||
condition: service_healthy | ||
postgresql: | ||
image: postgres:16-alpine | ||
volumes: | ||
- tolgee-postgresql-data:/var/lib/postgresql/data | ||
environment: | ||
- POSTGRES_USER=${SERVICE_USER_POSTGRESQL} | ||
- POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRESQL} | ||
- POSTGRES_DB=${POSTGRESQL_DATABASE:-tolgee} | ||
healthcheck: | ||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"] | ||
interval: 5s | ||
timeout: 20s | ||
retries: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"coolify": { | ||
"v4": { | ||
"version": "4.0.0-beta.259" | ||
"version": "4.0.0-beta.260" | ||
} | ||
} | ||
} | ||
|