-
Notifications
You must be signed in to change notification settings - Fork 1
feat: Redis,Valkey,MSSQL #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e7a8e76
add: redis,valkey
dd40a1a
Merge branch 'main' into feat/redis-valkey
5b4c714
fixes
bbb51b8
chore(release): 26.03.1
ea86c94
chore(release): 26.03.2
074f436
new: selector
948b15c
merge: redis,valkey
be843f7
add: mssql,more complex password
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,35 +1,46 @@ | ||
| name: ${PROJECT_NAME} | ||
| services: | ||
| portabase: | ||
| container_name: ${PROJECT_NAME}-app | ||
| image: portabase/portabase:latest | ||
| env_file: | ||
| - .env | ||
| ports: | ||
| - "${HOST_PORT}:80" | ||
| environment: | ||
| - TIME_ZONE=Europe/Paris | ||
| volumes: | ||
| - portabase-data:/data | ||
| depends_on: | ||
| db: | ||
| condition: service_healthy | ||
| db: | ||
| container_name: ${PROJECT_NAME}-pg | ||
| image: postgres:17-alpine | ||
| ports: | ||
| - "${PG_PORT}:5432" | ||
| volumes: | ||
| - postgres-data:/var/lib/postgresql/data | ||
| environment: | ||
| - POSTGRES_DB=${POSTGRES_DB} | ||
| - POSTGRES_USER=${POSTGRES_USER} | ||
| - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} | ||
| healthcheck: | ||
| test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"] | ||
| interval: 10s | ||
| timeout: 5s | ||
| retries: 5 | ||
| portabase: | ||
| container_name: ${PROJECT_NAME}-app | ||
| image: portabase/portabase:latest | ||
| restart: unless-stopped | ||
| env_file: | ||
| - .env | ||
| ports: | ||
| - "${HOST_PORT}:80" | ||
| environment: | ||
| - TZ=${TZ} | ||
| - LOG_LEVEL=${LOG_LEVEL} | ||
| - PROJECT_SECRET=${PROJECT_SECRET} | ||
| - PROJECT_URL=${PROJECT_URL} | ||
| volumes: | ||
| - portabase-data:/data | ||
| depends_on: | ||
| db: | ||
| condition: service_healthy | ||
| healthcheck: | ||
| test: ["CMD-SHELL", "curl -f http://localhost/api/health"] | ||
| interval: 30s | ||
| timeout: 5s | ||
| retries: 3 | ||
| start_period: 60s | ||
| db: | ||
| container_name: ${PROJECT_NAME}-pg | ||
| image: postgres:17-alpine | ||
| restart: unless-stopped | ||
| ports: | ||
| - "${PG_PORT}:5432" | ||
| volumes: | ||
| - postgres-data:/var/lib/postgresql/data | ||
| environment: | ||
| - POSTGRES_DB=${POSTGRES_DB} | ||
| - POSTGRES_USER=${POSTGRES_USER} | ||
| - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} | ||
| healthcheck: | ||
| test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER} -d ${POSTGRES_DB}"] | ||
| interval: 10s | ||
| timeout: 5s | ||
| retries: 5 | ||
| volumes: | ||
| postgres-data: | ||
| portabase-data: | ||
| postgres-data: | ||
| portabase-data: |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❓ Verification inconclusive
Script executed:
Repository: Portabase/cli
Repository: Portabase/cli
Exit code: 0
stdout:
Script executed:
# Read the CITATION.cff file to see the full structure cat CITATION.cffRepository: Portabase/cli
Repository: Portabase/cli
Exit code: 0
stdout:
Script executed:
# Check the git history of CITATION.cff to understand recent changes git log --oneline -20 -- CITATION.cffRepository: Portabase/cli
Repository: Portabase/cli
Exit code: 0
stdout:
Script executed:
Repository: Portabase/cli
Repository: Portabase/cli
Exit code: 0
stdout:
Script executed:
Repository: Portabase/cli
Repository: Portabase/cli
Exit code: 0
stdout:
Script executed:
Repository: Portabase/cli
Repository: Portabase/cli
Exit code: 0
Update the release date if this version includes new features added after April 20, 2026.
The
date-releasedfield is set to "2026-04-20" for version 26.04.1, which matches the historical release timestamp. However, if this PR introduces new features (Redis, Valkey, MSSQL support, interactive configuration) after that date, the release should either use a new version number (e.g., 26.04.2 or 26.05.x) with the appropriate release date, or the date should be updated to reflect when the release will actually occur.🤖 Prompt for AI Agents