Removed postgres from bluesky due to missing support

This commit is contained in:
Kevin Veen-Birkenbach 2025-01-17 19:21:10 +01:00
parent 991046eaeb
commit 5648d3d32a
4 changed files with 2 additions and 11 deletions

View File

@ -34,4 +34,5 @@ curl -X POST https://your-pds-domain/xrpc/com.atproto.server.createAccount \
- https://cprimozic.net/notes/posts/notes-on-self-hosting-bluesky-pds-alongside-other-services/ - https://cprimozic.net/notes/posts/notes-on-self-hosting-bluesky-pds-alongside-other-services/
- https://github.com/bluesky-social/pds - https://github.com/bluesky-social/pds
- https://chatgpt.com/c/678a2eb6-145c-800f-bf51-ff706981a928 - https://chatgpt.com/c/678a2eb6-145c-800f-bf51-ff706981a928
- https://www.youtube.com/watch?v=7_AG50u7D6c - https://www.youtube.com/watch?v=7_AG50u7D6c
- https://github.com/bluesky-social/pds/issues/52

View File

@ -1,7 +1,4 @@
--- ---
- name: "include docker/compose/database.yml"
include_tasks: docker/compose/database.yml
- name: "Include tasks for API domain" - name: "Include tasks for API domain"
include_tasks: nginx-docker-proxy-domain.yml include_tasks: nginx-docker-proxy-domain.yml
vars: vars:

View File

@ -8,7 +8,6 @@ services:
# Geben Sie hier Ihre Domain und Konfigurationsdetails an # Geben Sie hier Ihre Domain und Konfigurationsdetails an
PDS_HOSTNAME: "{{domain_api}}" PDS_HOSTNAME: "{{domain_api}}"
PDS_ADMIN_EMAIL: "{{administrator_email}}" PDS_ADMIN_EMAIL: "{{administrator_email}}"
PDS_DB__POSTGRES__URL: "postgres://{{ database_username }}:{{ database_password }}@{{ database_host }}:5432/{{ database_name }}"
PDS_SERVICE_DID: "did:web:{{domain_api}}" PDS_SERVICE_DID: "did:web:{{domain_api}}"
# See https://mattdyson.org/blog/2024/11/self-hosting-bluesky-pds/ # See https://mattdyson.org/blog/2024/11/self-hosting-bluesky-pds/
PDS_SERVICE_HANDLE_DOMAINS: ".{{top_domain}}" PDS_SERVICE_HANDLE_DOMAINS: ".{{top_domain}}"
@ -36,7 +35,6 @@ services:
timeout: 10s timeout: 10s
retries: 3 retries: 3
{% include 'templates/docker/container/networks.yml.j2' %} {% include 'templates/docker/container/networks.yml.j2' %}
{% include 'templates/docker/container/depends-on-just-database.yml.j2' %}
# Deactivated for the moment @see https://github.com/bluesky-social/social-app # Deactivated for the moment @see https://github.com/bluesky-social/social-app
web: web:
@ -61,9 +59,6 @@ services:
timeout: 10s timeout: 10s
retries: 3 retries: 3
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
{% include 'templates/docker/compose/volumes.yml.j2' %} {% include 'templates/docker/compose/volumes.yml.j2' %}
pds_data: pds_data:

View File

@ -1,4 +1,2 @@
docker_compose_project_name: "bluesky" docker_compose_project_name: "bluesky"
database_password: "{{bluesky_database_password}}"
database_type: "postgres"
social_app_path: "{{ docker_compose_instance_directory }}/social-app" social_app_path: "{{ docker_compose_instance_directory }}/social-app"