-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yaml
51 lines (46 loc) · 905 Bytes
/
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
version: '3.2'
services:
pserve:
build:
context: .
command: /env/bin/pserve --reload /src/config/pserve.ini
environment:
- LC_ALL=C.UTF-8
depends_on:
- postgres
volumes:
- .:/src
- data:/data
ports:
- "20080:20080"
shell:
build:
context: .
command: /bin/bash --rcfile /src/util/bashrc
environment:
- NEXTGISWEB_CONFIG=/src/config/config.ini
- NEXTGISWEB_LOGGING=/src/config/logging.ini
- LC_ALL=C.UTF-8
depends_on:
- postgres
- minio
volumes:
- .:/src
- data:/data
postgres:
image: mdillon/postgis
ports:
- "25432:5432"
minio:
image: minio/minio
command: server /data
environment:
- MINIO_ACCESS_KEY=default
- MINIO_SECRET_KEY=changeme
volumes:
- minio:/data
ports:
- 29000:9000
volumes:
data:
minio: