added osm_edit docker-compose.yml

This commit is contained in:
Ben Varick 2025-02-04 09:01:04 -06:00
parent 21e55bc837
commit ab7158cc7f
Signed by: ben
SSH Key Fingerprint: SHA256:jWnpFDAcacYM5aPFpYRqlsamlDyKNpSj3jj+k4ojtUo
2 changed files with 28 additions and 0 deletions

View File

@ -8,3 +8,5 @@
!srtm3/ !srtm3/
!brouter-tmp/ !brouter-tmp/
!segments/ !segments/
!docker-compose.yml

View File

@ -0,0 +1,26 @@
---
services:
brouter:
container_name: brouter
ports:
- 17777:17777
volumes:
- ./segments:/segments4
image: brouter
build:
context: ../brouter
dockerfile: Dockerfile
---
services:
brouter-web:
container_name: brouter-web
ports:
- 127.0.0.1:8080:80
volumes:
- ../brouter-web/config.js:/usr/share/nginx/html/config.js
- ../brouter-web/keys.js:/usr/share/nginx/html/keys.js
- ../brouter-web/profiles:/usr/share/nginx/html/profiles
image: brouter-web
build:
context: ../brouter-web
dockerfile: Dockerfile