mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
46 lines
956 B
YAML
46 lines
956 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/dockerfile/Dockerfile
|
|
target: prod
|
|
# image: portabase/portabase:1
|
|
ports:
|
|
- "8887:80"
|
|
environment:
|
|
TZ: "Europe/Paris"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- portabase-data:/data
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
container_name: portabase-app-prod
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl -f http://localhost/api/health"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 60s
|
|
|
|
db:
|
|
image: postgres:16-alpine
|
|
ports:
|
|
- "5433:5432"
|
|
volumes:
|
|
- postgres-data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_DB=devdb
|
|
- POSTGRES_USER=devuser
|
|
- POSTGRES_PASSWORD=changeme
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U devuser -d devdb"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
volumes:
|
|
portabase-data:
|
|
postgres-data:
|