Merge pull request #153 from alexovchinnicov/master

Docker
pull/154/head
Revertron 3 years ago committed by GitHub
commit eed0adad0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,26 @@
FROM ubuntu
LABEL Description="Alfis Alternative Free Identity System"
LABEL URL="https://github.com/Revertron/Alfis/releases "
ARG arch=amd64
ARG srv_port=4244
ARG dns_port=53
RUN apt-get update -y && \
apt-get install -y curl && \
curl -SsL "https://github.com/Revertron/Alfis/releases/download/$(curl --silent "https://api.github.com/repos/Revertron/Alfis/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')/alfis-${arch}-$(curl --silent "https://api.github.com/repos/Revertron/Alfis/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')-nogui.deb" -o /tmp/alfis.deb && \
dpkg -i /tmp/alfis.deb && \
apt-get purge -y curl && \
apt-get autoremove -y && \
apt-get clean && \
rm -rf /tmp/* && \
rm -rf /var/lib/{apt,dpkg,cache,log}/
EXPOSE ${srv_port}
EXPOSE ${dns_port}
EXPOSE ${dns_port}/udp
WORKDIR /var/lib/alfis
CMD ["/usr/bin/alfis", "-n", "-c", "/etc/alfis.conf"]

@ -0,0 +1,5 @@
ROOT:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
IMAGE_NAME:=alfis
build:
docker build -t ${IMAGE_NAME} .

@ -0,0 +1 @@
docker run -d --name alfis --net=host -v $(pwd)/cache:/var/lib/alfis alfis
Loading…
Cancel
Save