forked from WHOIGit/ifcbdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml.example
More file actions
52 lines (46 loc) · 915 Bytes
/
docker-compose.yml.example
File metadata and controls
52 lines (46 loc) · 915 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
50
51
52
services:
ifcbdb:
build: .
container_name: ifcbdb
env_file: .env
volumes:
- ../raw:/home/appuser/raw
depends_on:
- postgres
- memcached
- redis
celery:
build: .
container_name: celery
command: celery -A ifcbdb worker -l info
env_file: .env
volumes:
- ../raw:/home/appuser/raw
depends_on:
- postgres
- memcached
- redis
nginx:
build:
context: .
dockerfile: nginx/Dockerfile
container_name: nginx
ports:
- 80:80
depends_on:
- ifcbdb
postgres:
image: postgis/postgis:13-3.1-alpine
container_name: postgres
env_file: .env
volumes:
- pg_data:/var/lib/postgresql/data
memcached:
image: memcached:1.6-alpine
container_name: memcached
command: ['-m', '64m']
redis:
image: redis:6.2-alpine
container_name: redis
volumes:
pg_data: