Initial setup (without mbtiles example)

This commit is contained in:
Sil Klaasboer
2025-02-10 21:27:28 +01:00
parent a2109cd008
commit 05588c2333
11 changed files with 7987 additions and 1 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
tile-server:
image: maptiler/tileserver-gl:latest
container_name: tile-server
env_file:
- .env
volumes:
- ${DATA_DIR}:/data/
ports:
- ${PORT}:8080
command: ["--file", "${MBTILES_FILE}"]