tangled
alpha
login
or
join now
sullen.net
/
pds
0
fork
atom
Fork of official Bluesky PDS (Personal Data Server).
0
fork
atom
overview
issues
pulls
pipelines
Simplify compose.yaml
sullen.net
1 month ago
4701831e
e46bda14
+6
-33
1 changed file
expand all
collapse all
unified
split
compose.yaml
+6
-33
compose.yaml
···
1
1
-
version: '3.9'
2
1
services:
3
3
-
caddy:
4
4
-
container_name: caddy
5
5
-
image: caddy:2
6
6
-
network_mode: host
7
7
-
depends_on:
8
8
-
- pds
9
9
-
restart: unless-stopped
10
10
-
volumes:
11
11
-
- type: bind
12
12
-
source: /pds/caddy/data
13
13
-
target: /data
14
14
-
- type: bind
15
15
-
source: /pds/caddy/etc/caddy
16
16
-
target: /etc/caddy
17
2
pds:
3
3
+
build: .
18
4
container_name: pds
19
19
-
image: ghcr.io/bluesky-social/pds:0.4
20
20
-
network_mode: host
21
5
restart: unless-stopped
6
6
+
ports:
7
7
+
- "127.0.0.1:3000:3000"
22
8
volumes:
23
23
-
- type: bind
24
24
-
source: /pds
25
25
-
target: /pds
9
9
+
- /home/pds:/pds
26
10
env_file:
27
27
-
- /pds/pds.env
28
28
-
watchtower:
29
29
-
container_name: watchtower
30
30
-
image: ghcr.io/nicholas-fedor/watchtower:latest
31
31
-
network_mode: host
32
32
-
volumes:
33
33
-
- type: bind
34
34
-
source: /var/run/docker.sock
35
35
-
target: /var/run/docker.sock
36
36
-
restart: unless-stopped
37
37
-
environment:
38
38
-
WATCHTOWER_CLEANUP: true
39
39
-
WATCHTOWER_SCHEDULE: "@midnight"
11
11
+
- .env
12
12
+
user: "pds"