forked from Ryubing/LdnServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (39 loc) · 846 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (39 loc) · 846 Bytes
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
version: '3'
services:
redis:
image: redis/redis-stack-server
restart: always
networks:
- main
ldn-server:
build: ./
restart: always
environment:
LDN_HOST: 0.0.0.0
LDN_PORT: 30456
LDN_REDIS_HOST: redis
LDN_REDIS_PORT: 6379
IP_BAN_FILE_PATH: /data/ryuldn/bannedips.txt
volumes:
- /data/ryuldn:/data/ryuldn
ports:
- "30456:30456"
networks:
- main
ryujinx-ldn-website:
# NOTE: Make sure the website repo is cloned to this location and up to date
hostname: ryujinx-ldn-website
build: ../ryujinx-ldn-website/
environment:
NODE_ENV: production
HOST: 0.0.0.0
PORT: 8080
REDIS_URL: "redis://redis:6379"
ports:
- "8080:8080"
networks:
- main
networks:
main:
name: main
external: true