Docker image for the NoiseModelling library which is capable of producing noise maps of cities.
docker run -dt --name noisemodelling -p 9580:9580 --mount type=bind,source="$(pwd)"/data,target=/data tomasanda/noisemodelling:latest
In the Dockerhub repository you'll find the following images/tags:
- stable release tags (e.g. 4.0.3)
latest
, updated from NoiseModelling Github repository
- Create a
docker-compose.yml
and paste the content below. - Create a
data
folder in the same directory to be able to mount it as a volume. - Add your desired files in the folder.
version: '3'
services:
noisemodelling:
image: tomasanda/noisemodelling:latest
container_name: noisemodelling_latest
ports:
- "9580:9580"
volumes:
- type: bind
source: ./data
target: /data