32 lines
1008 B
Plaintext
Raw Normal View History

2025-01-09 09:00:09 +01:00
services:
2025-01-15 14:42:32 +01:00
application:
2025-01-09 09:00:09 +01:00
image: ghcr.io/bluesky-social/pds:0.4
2025-01-15 14:42:32 +01:00
restart: {{docker_restart_policy}}
2025-01-09 09:00:09 +01:00
ports:
2025-01-15 14:42:32 +01:00
- {{http_port}}:3000
2025-01-09 09:00:09 +01:00
volumes:
2025-01-15 14:42:32 +01:00
- data:/pds
2025-01-09 09:00:09 +01:00
env_file:
2025-01-15 14:42:32 +01:00
- /env
2025-01-10 18:04:27 +01:00
environment:
# Geben Sie hier Ihre Domain und Konfigurationsdetails an
PDS_HOSTNAME: "your-domain.com"
PDS_ADMIN_EMAIL: "admin@your-domain.com"
PDS_DB__POSTGRES__URL: "postgres://pdsuser:pdspassword@postgres:5432/pds"
PDS_SERVICE_DID: "did:web:your-domain.com"
2025-01-09 09:00:09 +01:00
ports:
- "127.0.0.1:{{http_port}}:3000"
healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000"]
interval: 1m
timeout: 10s
retries: 3
{% include 'templates/docker/container/networks.yml.j2' %}
{% include 'templates/docker/container/depends-on-just-database.yml.j2' %}
2025-01-15 14:42:32 +01:00
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
2025-01-09 09:00:09 +01:00
{% include 'templates/docker/compose/volumes.yml.j2' %}
data:
{% include 'templates/docker/compose/networks.yml.j2' %}