-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·41 lines (35 loc) · 951 Bytes
/
docker-compose.yml
File metadata and controls
executable file
·41 lines (35 loc) · 951 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
version: '3.7'
services:
ui:
build:
context: './'
dockerfile: './src/web/ui/Dockerfile'
image: 'simplyvc/panic_oasis_ui:2.0.1'
volumes:
- './config:/opt/panic_oasis/config'
- './src/web/ui/sessions:/opt/panic_oasis/src/web/ui/sessions'
ports:
- '${UI_HOST_PORT}:9000'
restart: always
redis:
image: 'redis'
command: redis-server --requirepass "${REDIS_PASSWORD}"
ports:
- "${REDIS_HOST_PORT}:6379"
restart: always
mongo:
image: 'mongo'
environment:
MONGO_INITDB_ROOT_USERNAME: "${MONGO_INITDB_ROOT_USERNAME}"
MONGO_INITDB_ROOT_PASSWORD: "${MONGO_INITDB_ROOT_PASSWORD}"
MONGO_INITDB_DATABASE: panic
ports:
- "${MONGO_HOST_PORT}:27017"
restart: always
alerter:
build: .
image: 'simplyvc/panic_oasis:2.0.1'
volumes:
- './config:/opt/panic_oasis/config'
- './logs:/opt/panic_oasis/logs'
restart: always