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 #command: -c 'max_connections=500'
6 restart: unless-stopped
7 environment:
8 POSTGRES_USER: root
9 PGUSER: root
10 POSTGRES_PASSWORD: root
11 POSTGRES_DB: wafrn
12 volumes:
13 - dbpg:/var/lib/postgresql/data
14 ports:
15 - "5432:5432"
16
17 adminer:
18 image: adminer
19 restart: unless-stopped
20 ports:
21 - "8080:8080"
22
23 redis:
24 image: redis:8.4
25 restart: unless-stopped
26 volumes:
27 - redis:/data
28 ports:
29 - "8001:8001"
30 - "8070:8070"
31 - "6379:6379"
32
33volumes:
34 dbpg:
35 redis:
36
37
38networks:
39 default:
40 enable_ipv6: true