tangled
alpha
login
or
join now
vicwalker.dev.br
/
pds-mirror
0
fork
atom
Mirror from bluesky-social/pds
0
fork
atom
overview
issues
pulls
pipelines
broken compose file
Jake Gold
2 years ago
cff2d268
11e77b50
+36
1 changed file
expand all
collapse all
unified
split
compose.yaml
+36
compose.yaml
···
1
1
+
version: '3.9'
2
2
+
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
+
- /data/caddy/data:/data
12
12
+
- /data/caddy/etc/caddy:/etc/caddy
13
13
+
pds:
14
14
+
container_name: pds
15
15
+
image: ghcr.io/bluesky-social/pds:latest
16
16
+
network_mode: host
17
17
+
restart: unless-stopped
18
18
+
volumes:
19
19
+
- type: bind
20
20
+
source: /data
21
21
+
target: /data
22
22
+
env_file:
23
23
+
- /data/pds.env
24
24
+
watchtower:
25
25
+
container_name: watchtower
26
26
+
image: containrrr/watchtower:latest
27
27
+
network_mode: host
28
28
+
volumes:
29
29
+
- type: bind
30
30
+
source: /var/run/docker.sock
31
31
+
target: /var/run/docker.sock
32
32
+
restart: unless-stopped
33
33
+
environment:
34
34
+
TZ: "US/Pacific"
35
35
+
WATCHTOWER_CLEANUP: true
36
36
+
WATCHTOWER_SCHEDULE: "@midnight"