Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ enforcement ladder](https://github.com/mozilla/diversity).

For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at
https://www.contributor-covenant.org/translations.
https://www.contributor-covenant.org/translations.
6 changes: 1 addition & 5 deletions .github/assets/templates/agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ services:
networks:
- portabase

{{EXTRA_SERVICES}}

{{EXTRA_VOLUMES}}

networks:
portabase:
name: portabase_network
external: true
external: true
64 changes: 32 additions & 32 deletions .github/assets/templates/dashboard.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
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
app:
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
volumes:
postgres-data:
portabase-data:
postgres-data:
portabase-data:
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ keywords:
- management
- integration
license: Apache-2.0
version: 26.02.17
date-released: "2026-02-17"
version: 26.03.2
date-released: "2026-03-25"
Loading
Loading