-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
75 lines (74 loc) · 1.81 KB
/
docker-compose.yml
File metadata and controls
75 lines (74 loc) · 1.81 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
version: "3.9"
services:
backend:
image: gogoadl247/spoparty-backend:latest
container_name: backend
tty: true
restart: always
ports:
- "9090:9090"
environment:
- TZ=Asia/Seoul
volumes:
- /opt/openvidu/recordings:/opt/openvidu/recordings
batch:
image: gogoadl247/spoparty-batch:latest
container_name: batch
tty: true
restart: always
ports:
- "9091:9091"
environment:
- TZ=Asia/Seoul
redis:
image: redis:7.2.4
container_name: redis
restart: always
ports:
- "6379:6379"
command: redis-server --save 60 1000 --requirepass ${REDIS_PASSWORD}
# frontend:
# image: gogoadl247/spoparty-frontend:latest
# container_name: frontend
# tty: true
# ports:
# - "3000:5173"
# depends_on:
# - nginx
# nginx:
# image: gogoadl247/spoparty-nginx:latest
# container_name: nginx
# user: root
# environment:
# - TZ=Asia/Seoul
# volumes:
# - /etc/localtime:/etc/localtime:ro
# - /etc/nginx/sites-enabled/default:/etc/nginx/conf.d/default.conf
# - /etc/letsencrypt:/etc/letsencrypt
# ports:
# - "80:80"
# - "443:443"
# jenkins:
# image: jenkins/jenkins:jdk17
# container_name: jenkins
# user: root
# environment:
# - JENKINS_OPTS=--httpPort=8080
# - TZ=Asia/Seoul
# ports:
# - "8080:8080"
# volumes:
# - /etc/localtime:/etc/localtime:ro
# - /jenkins:/var/jenkins_home
# - /var/run/docker.sock:/var/run/docker.sock
# - /usr/local/bin/docker-compose:/usr/local/bin/docker-compose
# openvidu:
# image: openvidu/openvidu-dev:2.29.0
# container_name: openvidu
# ports:
# - "4443:4443"
# environment:
# - OPENVIDU_SECRET=MY_SECRET
#networks:
#react-spring: {}
#spring-mysql: {}