mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-23 20:11:12 +00:00
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
services:
|
|
|
|
app:
|
|
image: docuseal/docuseal:latest
|
|
container_name: docuseal
|
|
restart: unless-stopped
|
|
environment:
|
|
- DATABASE_URL=postgresql://postgres:postgres@postgres:5432/docuseal
|
|
volumes:
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/docuseal/data:/data
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
ports:
|
|
- 3000:3000
|
|
expose:
|
|
- 3000
|
|
#networks:
|
|
# - proxy
|
|
#labels:
|
|
# - traefik.enable=true
|
|
# - traefik.docker.network=proxy
|
|
# - traefik.http.routers.docuseal.rule=Host(`docuseal.example.com`)
|
|
# - traefik.http.services.docuseal.loadbalancer.server.port=3000
|
|
# # Optional part for traefik middlewares
|
|
# - traefik.http.routers.docuseal.middlewares=local-ipwhitelist@file,authelia@docker
|
|
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
container_name: docuseal-db
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_DB=docuseal
|
|
volumes:
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/docuseal/pg_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
expose:
|
|
- 5432
|
|
#networks:
|
|
# - proxy
|
|
|
|
#networks:
|
|
# proxy:
|
|
# external: true
|