forked from thehookup/SmartHouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.health.yaml
More file actions
executable file
·74 lines (73 loc) · 1.77 KB
/
docker-compose.health.yaml
File metadata and controls
executable file
·74 lines (73 loc) · 1.77 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
# Small laboratory
version: '3.5'
services:
stonks:
restart: unless-stopped
image: macbury/mos:latest
network_mode: host
env_file:
- '.env.mos'
environment:
- MASTER_STONKS_DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@0.0.0.0:4101/mos_production?sslmode=disable
hub:
image: selenium/hub
ports:
- "4444:4444"
environment:
GRID_MAX_SESSION: 16
GRID_BROWSER_TIMEOUT: 3000
GRID_TIMEOUT: 3000
firefox:
image: selenium/node-firefox-debug
depends_on:
- hub
environment:
HUB_PORT_4444_TCP_ADDR: hub
HUB_PORT_4444_TCP_PORT: 4444
NODE_MAX_SESSION: 16
NODE_MAX_INSTANCES: 16
volumes:
- /dev/shm:/dev/shm
ports:
- "9001:5900"
links:
- hub
tor:
restart: unless-stopped
build: ./tor/
network_mode: host
volumes:
- .docker/data/tor:/data
detox:
restart: unless-stopped
image: macbury/detox:latest
network_mode: host
volumes:
- .docker/log/detox:/detox/log
- .docker/data/detox:/detox/public/data
env_file:
- '.env.detox'
environment:
- DETOX_DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@0.0.0.0:4101/detox_production?sslmode=disable
speedtest:
image: macbury/speedtest:latest
env_file:
- '.env.speedtest'
ports:
- 6888:80
glances:
restart: unless-stopped
image: nicolargo/glances
environment:
- GLANCES_OPT=-w
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./glances/:/glances/conf/
ports:
- 4108:61208
vacuum:
build: ./vacuum/
volumes:
- .docker/data/vacuum:/app/public
ports:
- 10005:3000