-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
59 lines (53 loc) · 1.13 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
version: "3.7"
services:
buildmap:
image: "ghcr.io/emfcamp/buildmap:latest"
volumes:
- .:/config
- ../gis-2024:/gis-2024
- ./output:/output
- ./web-assets:/web
command: "/gis-2024/map.json /config/local.conf.json"
networks:
- default
depends_on:
- db
db:
image: "postgis/postgis:15-3.4-alpine"
networks:
- default
environment:
POSTGRES_PASSWORD: postgres
PROJ_NETWORK: "ON"
restart: unless-stopped
tegola:
image: "gospatial/tegola:v0.19.0"
ports:
- 127.0.0.1:8888:8080
volumes:
- ./output:/opt/tegola_config
- ./tegola-cache:/tmp/tegola
command: "serve --config /opt/tegola_config/tegola.toml"
networks:
- web
- default
depends_on:
- db
restart: unless-stopped
web:
image: "ghcr.io/emfcamp/map-web:latest"
ports:
- 127.0.0.1:8080:8080
networks:
- web
restart: unless-stopped
dk_geojson:
build:
context: ./dk_geojson
volumes:
- ./web-assets/noc:/noc
environment:
NETBOX_API_TOKEN: ${NETBOX_API_TOKEN}
networks:
web:
name: web