forked from tkmax/tkmninja
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
37 lines (37 loc) · 791 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
37 lines (37 loc) · 791 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
version: "3.9"
services:
cataso:
build:
context: .
dockerfile: Dockerfile.node
restart: always
ports:
- "5000:5000"
environment:
TZ: Asia/Tokyo
ADMIN_TRIP: dummy
REDIS_URL: redis://redis:6379
volumes:
- .:/workspace
nginx:
image: nginx
ports:
- "443:443"
restart: always
environment:
TZ: Asia/Tokyo
volumes:
- ./reverse-proxy/default.conf:/etc/nginx/conf.d/default.conf
- ./cert/privkey.pem:/etc/ssl/private/server.key
- ./cert/server.crt:/etc/ssl/certs/server.crt
redis:
image: redis
ports:
- "6379:6379"
restart: always
environment:
TX: Asia/Tokyo
volumes:
- redis-volume:/data
volumes:
redis-volume: