forked from Vudjun/LdnServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
53 lines (48 loc) · 1.04 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
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
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
ryujinx-ldn-website2:
# NOTE: Make sure the website repo is cloned to this location and up to date
hostname: ryujinx-ldn-website2
build: ../ryujinx-ldn-website2/
environment:
HOST: 0.0.0.0
PORT: 8080
REDIS_URL: "redis:6379"
#ports:
# - "8080:8081"
networks:
- main
networks:
main:
name: main
external: true