-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
81 lines (70 loc) · 1.55 KB
/
docker-compose.yaml
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
75
76
77
78
79
80
81
version: '3.4'
services:
postgresDb:
image: postgres
container_name: postgresDb
deploy:
restart_policy:
condition: on-failure
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U docker -d crawler_db" ]
interval: 30s
timeout: 10s
retries: 5
environment:
POSTGRES_PASSWORD: docker
POSTGRES_USER: docker
PGDATA: /data/postgres
POSTGRES_DB: crawler_db
volumes:
- db-data:/var/lib/postgresql/data
ports:
- "5432:5432"
networks:
- crawler-network
torproxy:
image: dperson/torproxy
container_name: torproxy
restart: always
ports:
- "9050:9050"
- "9051:9051"
networks:
- crawler-network
deploy:
restart_policy:
condition: on-failure
polipo:
image: 'clue/polipo'
container_name: polipo
command: proxyAddress=0.0.0.0 proxyPort=8181 socksParentProxy=torproxy:9050
deploy:
restart_policy:
condition: on-failure
networks:
- crawler-network
crawler:
image: ${DOCKER_REGISTRY-}crawler
container_name: crawler
ports:
- "5000:5000"
depends_on:
- postgresDb
- torproxy
environment:
- http_proxy=http://polipo:8181
- https_proxy=http://polipo:8181
- SECRET_KEY=this_is_our_little_secret
build:
context: .
dockerfile: ./Dockerfile
networks:
- crawler-network
deploy:
restart_policy:
condition: on-failure
networks:
crawler-network:
name: crawler-network
volumes:
db-data: