-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·79 lines (78 loc) · 1.59 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
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
version: '3.3'
services:
client:
hostname: client
image: osm2pgsqlauto:client
build:
context: ./client
dockerfile: client.Dockerfile
volumes:
- ./client:/app
ports:
- 5049:4000
pgadmin:
build:
context: .
dockerfile: pgadmin.Dockerfile
image: osm2pgsqlauto:pgadmin
env_file: .env.pgadmin
ports:
- 5050:80
volumes:
- ./.pgadmin:/var/lib/pgadmin
qtorrent:
hostname: qtorrent
image: osm2pgsqlauto:qtorrent
build:
context: .
dockerfile: qtorrent.Dockerfile
env_file: .env.qtorrent
volumes:
- ./.qtorrent/config:/config
- ./imports:/imports
ports:
- 6881:6881
- 6969
- 5051:8080
graphql:
hostname: graphql
image: osm2pgsqlauto:graphql
build:
context: .
dockerfile: postgraphql.Dockerfile
env_file: .env.graphql
ports:
- 5052:5000
volumes:
- ./.graphql/entrypoint:/app/entrypoint
restart: always
postgres:
hostname: postgres
image: osm2pgsqlauto:postgres
build:
context: .
dockerfile: postgres.Dockerfile
restart: always
env_file:
- .env.postgres
ports:
- 5433:5432
volumes:
- ./data:/var/lib/postgresql/data/pgdata
- ./config:/docker-entrypoint-initdb.d
imposm:
hostname: imposm
image: osm2pgsqlauto:imposm
build:
context: .
dockerfile: imposm.Dockerfile
env_file:
- .env.postgres
- .env.imposm
ports:
- 5433
volumes:
- ./imports:/imports
volumes:
pgadmin: null
client_modules: null