Compare commits
8 commits
Author | SHA1 | Date | |
---|---|---|---|
387f9bd880 | |||
b8ca4d0ca3 | |||
3896e9e85f | |||
2ceacbcbe9 | |||
7f90c9b447 | |||
2e01e44c85 | |||
7017f4ba25 | |||
|
8e0c0485f2 |
4 changed files with 11 additions and 153 deletions
10
Makefile
10
Makefile
|
@ -1,8 +1,4 @@
|
||||||
REGISTRY = forgejo.gravityfargo.dev
|
TAG ?= latest
|
||||||
OWNER = gravityfargo
|
|
||||||
IMAGE = bluesky-pds
|
|
||||||
TAG ?= 0.4.74
|
|
||||||
DOMAIN = sheltersky.social
|
|
||||||
|
|
||||||
export DOCKER_BUILDKIT=1
|
export DOCKER_BUILDKIT=1
|
||||||
export BUILDKIT_PROGRESS=plain
|
export BUILDKIT_PROGRESS=plain
|
||||||
|
@ -14,7 +10,7 @@ build-base:
|
||||||
.PHONY: build-tag
|
.PHONY: build-tag
|
||||||
build-tag:
|
build-tag:
|
||||||
sudo rm -rf config
|
sudo rm -rf config
|
||||||
docker build --no-cache --tag $(REGISTRY)/$(OWNER)/$(IMAGE):$(TAG) .
|
docker build --tag forgejo.gravityfargo.dev/gravityfargo/bluesky-pds:$(TAG) .
|
||||||
|
|
||||||
.PHONY: generate-env
|
.PHONY: generate-env
|
||||||
generate-env:
|
generate-env:
|
||||||
|
@ -37,4 +33,4 @@ run:
|
||||||
|
|
||||||
.PHONY: push
|
.PHONY: push
|
||||||
push:
|
push:
|
||||||
docker push $(REGISTRY)/$(OWNER)/$(IMAGE):$(TAG)
|
docker push forgejo.gravityfargo.dev/gravityfargo/bluesky-pds:latest
|
153
README.md
153
README.md
|
@ -1,152 +1,13 @@
|
||||||
# bluesky-pds-docker
|
**User Documentation:**[ ModernLeft Docs](https://docs.modernleft.org/Docker-Images/bluesky-pds)
|
||||||
|
|
||||||
A self-contained Docker image for the [Bluesky PDS (Personal Data Server) ](https://github.com/bluesky-social/pds) for use with Traefik. This image is pinned to v0.4.74.
|
---
|
||||||
|
|
||||||
It is required to run the instance behind a proxy (like traefik) to generate SSL certificates. This will not work otherwise. The standard pds install includes caddy to handle this. A wildcard DNS assignment along with a wildcard SSL certificate is required. I use Cloudflare for this, see the screenshot below.
|
| | |
|
||||||
|
| ---------------------------- | -------------------------------------------------------------------------------------------------------- |
|
||||||
|
| Official bluesky-pds project | [GitHub - bluesky-social/pds](https://github.com/bluesky-social/pds) |
|
||||||
|
| Image on Forgejo | [Forgejo](https://code.modernleft.org/gravityfargo/-/packages/container/bluesky-pds/latest) |
|
||||||
|
| Image on Dockerhub | [Dockerhub](https://hub.docker.com/r/gravityfargo/bluesky-pds) |
|
||||||
|
|
||||||
I can confirm it works behind Cloudflare's DNS Proxy with Full (strict).
|
|
||||||
|
|
||||||
This is not intended for production, and I am not responsible for any data loss or security issues. This is a personal project, and I am not affiliated with Bluesky.
|
|
||||||
|
|
||||||
## Deployment
|
|
||||||
|
|
||||||
Before changing images or upgrading, backup the files made in the volume.
|
|
||||||
|
|
||||||
### Reqirements
|
|
||||||
|
|
||||||
I haven't verified these are the minimum requirements, but they are what I found to be necessary after starting this readme. I probably had some dependencies installed already.
|
|
||||||
|
|
||||||
#### Manjaro/Arch
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo pacman -S jq
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Debian/Ubunutu
|
|
||||||
|
|
||||||
```bash
|
|
||||||
sudo apt install make xxd
|
|
||||||
```
|
|
||||||
|
|
||||||
### Setup
|
|
||||||
|
|
||||||
Generate secrets and add them to `.env` file. See [example.env](example.env) as an example.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Generate secret environment variables
|
|
||||||
echo PDS_ADMIN_PASSWORD: $(openssl rand --hex 16)
|
|
||||||
|
|
||||||
echo PDS_JWT_SECRET: $(openssl rand --hex 16)
|
|
||||||
|
|
||||||
echo PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX: $(openssl ecparam --name secp256k1 --genkey --noout --outform DER | tail --bytes=+8 | head --bytes=32 | xxd --plain --cols 32)
|
|
||||||
```
|
|
||||||
|
|
||||||
### Docker Compose Setup
|
|
||||||
|
|
||||||
Full list of additional Environment Variables provided by bluesky upstream can be found in the [packages/pds/src/config/env.ts](https://github.com/bluesky-social/atproto/blob/main/packages/pds/src/config/env.ts)
|
|
||||||
|
|
||||||
By default, the image uses 1000:1000 as the UID:GID for the user. This can be changed by setting the `PUID` and `PGID` environment variables.
|
|
||||||
|
|
||||||
The compose element `hostname` must be the same value as `PDS_HOSTNAME`.
|
|
||||||
|
|
||||||
#### Traefik
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Traefik Proxy
|
|
||||||
services:
|
|
||||||
bluesky-pds:
|
|
||||||
container_name: bluesky-pds
|
|
||||||
hostname: example.com
|
|
||||||
image: gravityfargo/bluesky-pds:0.4.74
|
|
||||||
networks:
|
|
||||||
- proxy
|
|
||||||
environment:
|
|
||||||
# Define variables here or in a .env file
|
|
||||||
PDS_JWT_SECRET: ...
|
|
||||||
PDS_ADMIN_PASSWORD: ...
|
|
||||||
PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX: ...
|
|
||||||
PDS_HOSTNAME: example.com
|
|
||||||
PDS_EMAIL_SMTP_URL: ""
|
|
||||||
PDS_EMAIL_FROM_ADDRESS: ""
|
|
||||||
PUID: 1005
|
|
||||||
PGID: 1005
|
|
||||||
volumes:
|
|
||||||
- ./bluesky-pds:/pds
|
|
||||||
labels:
|
|
||||||
traefik.enable: "true"
|
|
||||||
traefik.http.routers.bluesky-pds-insecure.entrypoints: http
|
|
||||||
traefik.http.routers.bluesky-pds-insecure.rule: HostRegexp(`^.+\.${URL_NAME}\.${URL_SUFFIX}$`) || Host(`${PDS_HOSTNAME}`)
|
|
||||||
# traefik.http.routers.bluesky-pds-insecure.middlewares: BlueskyHeaders@file
|
|
||||||
traefik.http.routers.bluesky-pds-secure.entrypoints: https
|
|
||||||
traefik.http.routers.bluesky-pds-secure.rule: HostRegexp(`^.+\.${URL_NAME}\.${URL_SUFFIX}$`) || Host(`${PDS_HOSTNAME}`)
|
|
||||||
traefik.http.routers.bluesky-pds-secure.tls: "true"
|
|
||||||
traefik.http.services.bluesky-pds.loadbalancer.server.scheme: http
|
|
||||||
traefik.http.services.bluesky-pds.loadbalancer.server.port: 3000
|
|
||||||
# traefik.http.routers.bluesky-pds-secure.middlewares: BlueskyHeaders@file
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Standalone
|
|
||||||
|
|
||||||
I do not run this, but it should be possible.
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Standalone, you'll need to add a proxy in front of this with SSL.
|
|
||||||
services:
|
|
||||||
bluesky-pds:
|
|
||||||
container_name: bluesky-pds
|
|
||||||
hostname: example.com
|
|
||||||
image: gravityfargo/bluesky-pds:0.4.74
|
|
||||||
environment:
|
|
||||||
# Define variables here or in a .env file
|
|
||||||
PDS_JWT_SECRET: ...
|
|
||||||
PDS_ADMIN_PASSWORD: ...
|
|
||||||
PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX: ...
|
|
||||||
PDS_HOSTNAME: example.com
|
|
||||||
PDS_EMAIL_SMTP_URL: ""
|
|
||||||
PDS_EMAIL_FROM_ADDRESS: ""
|
|
||||||
PUID: 1005
|
|
||||||
PGID: 1005
|
|
||||||
volumes:
|
|
||||||
- ./bluesky-pds:/pds
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Middleware
|
|
||||||
|
|
||||||
I think file configs are cleaner than having a billion labels. This is not required, but it's nice to have.
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# middleware.yaml
|
|
||||||
http:
|
|
||||||
middlewares:
|
|
||||||
BlueskyHeaders:
|
|
||||||
headers:
|
|
||||||
accessControlAllowMethods:
|
|
||||||
- GET
|
|
||||||
- OPTIONS
|
|
||||||
- PUT
|
|
||||||
- POST
|
|
||||||
- DELETE
|
|
||||||
accessControlAllowHeaders: "*"
|
|
||||||
accessControlAllowOriginList: "*"
|
|
||||||
addVaryHeader: true
|
|
||||||
stsSeconds: 63072000
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Optional Proxy Network
|
|
||||||
|
|
||||||
```bash
|
|
||||||
docker network create --subnet=192.168.1.0/24 --ipv6 --attachable proxy
|
|
||||||
# /etc/docker/daemon.json
|
|
||||||
# {
|
|
||||||
# "ipv6": true,
|
|
||||||
# "fixed-cidr-v6": "2001:db8:1::/64"
|
|
||||||
# }
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Cloudflare DNS
|
|
||||||
|
|
||||||
![alt text](assets/image.png)
|
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
|
|
BIN
assets/image.png
BIN
assets/image.png
Binary file not shown.
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
@ -13,6 +13,7 @@ services:
|
||||||
- .env
|
- .env
|
||||||
volumes:
|
volumes:
|
||||||
- ./config:/pds
|
- ./config:/pds
|
||||||
|
# - ./entrypoint.sh:/entrypoint.sh
|
||||||
labels:
|
labels:
|
||||||
traefik.enable: "true"
|
traefik.enable: "true"
|
||||||
traefik.http.routers.bluesky-pds-insecure.entrypoints: http
|
traefik.http.routers.bluesky-pds-insecure.entrypoints: http
|
||||||
|
|
Loading…
Reference in a new issue