-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
58 lines (55 loc) · 1.71 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: '3'
services:
mangarr.db:
container_name: mangarr.db
image: mongo
hostname: mangarr.db
restart: always
ports:
- 27017:27017
volumes:
- ./data/db:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: admin
MONGO_INITDB_ROOT_PASSWORD: password
mangarr.cache:
container_name: mangarr.cache
image: redis/redis-stack # This is using the redis-stack image, consider switching to the regular redis image
hostname: mangarr.cache
restart: always
ports:
- 6379:6379
- 8001:8001 # If you switch to the regular image, remove this port
environment:
REDIS_PASSWORD: password
mangarr.flaresolverr:
container_name: mangarr.flaresolverr
image: flaresolverr/flaresolverr
hostname: mangarr.flaresolverr
restart: always
ports:
- 8191:8191
mangarr.stack:
container_name: mangarr.stack
image: tnrd/mangarr.stack:latest
hostname: mangarr.stack
ports:
- 6565:80
- 6566:443
volumes:
- ./data/comics:/mnt/comics
environment:
# Flarsolverr
- FLARESOLVERR__HOST=http://mangarr.flaresolverr:8191 # The host of the flaresolverr instance
# Mongo
- MONGO__HOST=mangarr.db # The host of the mongo instance
- MONGO__USERNAME=admin # The username of the mongo instance
- MONGO__PASSWORD=password # The password of the mongo instance
# Redis
- REDIS__HOST=mangarr.cache # The host of the redis instance
- REDIS__PASSWORD=password # The password of the redis instance
# Seq - Optional
- SEQ__HOST=http://your.seq.host.here
- SEQ__KEY=your-seq-api-key
# Notifications - Optional
- NOTIFICATIONS__DISCORD=discord-webhook-url-here