- Platform: https://SpatialMap.org
- Docker: https://hub.docker.com/r/kohze/f8ff66a3b48e/
A docker container for SpatialMap developement and deployment
DockerHub https://hub.docker.com/r/kohze/f8ff66a3b48e/
- Downloading the Source Files
# Create new folder. Within that folder execute:
git clone https://github.com/SpatialMap/SpatialMapDev.git
- Creating Dockerfile: Create new file called "Dockerfile" within the new folder (next to the SpatialMapDev folder). Add the following lines and save.
FROM node:6
COPY . .
WORKDIR /SpatialMapDev
EXPOSE 3000
CMD ["npm","run","start"]
- Executing Image:
docker build .
docker run 'insertBuildIdHere'