-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
36 lines (33 loc) · 1 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
version: '3'
services:
job-redis-queue:
container_name: 'job-redis-queue'
image: 'redis'
ports:
- "6379:6379"
volumes:
- "~/data/archive-server/redis:/data"
archive-server:
container_name: 'archive-server'
build : .
ports:
- "3003:3003"
volumes:
- .:/home/node/app
env_file: .env
environment:
APP_VERSION: $APP_VERSION
SEARCH_HOST: $SEARCH_HOST
SEARCH_PORT: $SEARCH_PORT
SQL_DB_HOST: $SQL_DB_HOST
SQL_DB_PASSWORD: $SQL_DB_PASSWORD
SQL_DB_PORT: $SQL_DB_PORT
SQL_DB_USERNAME: $SQL_DB_USERNAME
SQL_TABLE_NAME: $SQL_TABLE_NAME
TATTLE_UI_AWS_ACCESS_KEY: $TATTLE_UI_AWS_ACCESS_KEY
TATTLE_UI_AWS_SECRET_ACCESS_KEY: $TATTLE_UI_AWS_SECRET_ACCESS_KEY
REDIS_HOST: $REDIS_HOST
depends_on:
- job-redis-queue
volumes:
node_modules: