-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdev.yml
More file actions
49 lines (45 loc) · 990 Bytes
/
dev.yml
File metadata and controls
49 lines (45 loc) · 990 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
42
43
44
45
46
47
48
49
version: '2'
services:
processing:
build: .
image: hostview/processing:latest
volumes:
- ./data:/data
- ./app:/app
- /app/node_modules
links:
- redis
- postgres
networks:
- backtier
environment:
NODE_ENV: development
DEBUG: hostview
PROCESS_REDIS: redis://redis:6379
PROCESS_DB: postgres://hostview:h0stvi3w@postgres/hostview
PROCESS_WATCH: 'yes'
PROCESS_DATA_DIR: '/data'
PROCESS_RETRY: 1
PROCESS_RETRY_DELAY: 1
PROCESS_WORKERS: 1
PROCESS_CONCURRENCY: 1
redis:
image: redis:3.0
networks:
- backtier
postgres:
image: postgres:9.5
ports:
- "5432:5432"
environment:
POSTGRES_USER: hostview
POSTGRES_PASSWORD: h0stvi3w
POSTGRES_DB: hostview
networks:
- backtier
volumes:
- ./data:/data
- ./docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
networks:
backtier:
driver: bridge