unoffical wafrn mirror
wafrn.net
atproto
social-network
activitypub
1# Ok this is a compose that does not include nor frontend nor backend.
2services:
3 db:
4 image: postgres:17
5 restart: unless-stopped
6 environment:
7 POSTGRES_USER: root
8 PGUSER: root
9 POSTGRES_PASSWORD: root
10 POSTGRES_DB: wafrn
11 volumes:
12 - dbpg:/var/lib/postgresql/data
13 ports:
14 - "5432:5432"
15
16 adminer:
17 image: adminer
18 restart: unless-stopped
19 ports:
20 - "8080:8080"
21
22 redis:
23 image: redis:7.2.4
24 restart: unless-stopped
25 volumes:
26 - redis:/data
27 ports:
28 - "8001:8001"
29 - "8070:8070"
30 - "6379:6379"
31
32volumes:
33 dbpg:
34 redis: