Move Dockerfile and docker-compose.yml into Project repository

This commit is contained in:
BlubbFish 2019-06-24 18:07:13 +02:00
parent de889459bb
commit 6a871ba280
2 changed files with 0 additions and 26 deletions

View File

@ -1,10 +0,0 @@
FROM mono:latest
RUN apt-get update && apt-get install -y curl gnupg
RUN curl -L http://repo.blubbfish.net/blubb.gpg.key | apt-key add -
RUN echo "deb http://repo.blubbfish.net blubb main" | tee "/etc/apt/sources.list.d/blubb.list"
RUN apt-get update && apt-get install -y loramap
WORKDIR /usr/local/bin/loramap

View File

@ -1,16 +0,0 @@
version: '2.3'
services:
loramap:
build:
context: .
image: janniswarnat/loramap:latest
command: ["mono","./Lora-Map.exe"]
ports:
- 8080:8080
volumes:
- "./Lora-Map/config/requests.conf:/etc/loramap/requests.conf"
- "./Lora-Map/config/settings.conf:/etc/loramap/settings.conf"
- "./maps:/usr/local/bin/loramap/resources/maps"
- "./json:/usr/local/bin/loramap/json"