mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
name: portabase-dev
|
|
|
|
services:
|
|
db:
|
|
image: postgres:17-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
|
|
|
|
tusd:
|
|
image: tusproject/tusd:v2.8.0
|
|
ports:
|
|
- "1080:8080"
|
|
command: >
|
|
-upload-dir /data/uploads/tmp
|
|
-hooks-http http://localhost:8887/api/tus/hooks
|
|
-max-size 21474836480
|
|
-base-path /tus/files/
|
|
extra_hosts:
|
|
- "localhost:host-gateway"
|
|
volumes:
|
|
- ./private/uploads/tmp:/data/uploads/tmp
|
|
user: "1000:1000"
|
|
|
|
mailpit:
|
|
image: axllent/mailpit:latest
|
|
container_name: portabase-mailpit-dev
|
|
hostname: mailpit
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8025:8025"
|
|
- "1025:1025"
|
|
|
|
azurite:
|
|
image: mcr.microsoft.com/azure-storage/azurite
|
|
command: azurite --blobHost 0.0.0.0 --skipApiVersionCheck
|
|
ports:
|
|
- "10000:10000"
|
|
volumes:
|
|
- azurite-data:/data
|
|
extra_hosts:
|
|
- "localhost:host-gateway"
|
|
networks:
|
|
- portabase
|
|
|
|
# DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;TableEndpoint=http://127.0.0.1:10002/devstoreaccount1;
|
|
|
|
volumes:
|
|
postgres-data:
|
|
azurite-data:
|
|
|
|
networks:
|
|
portabase:
|
|
name: portabase_network
|
|
external: true
|