11 lines
192 B
Docker
11 lines
192 B
Docker
FROM alpine:latest
|
|
MAINTAINER Team Lixo <lixonet@team.lixo>
|
|
|
|
RUN apk add tinc
|
|
|
|
EXPOSE 9993/tcp 655/udp
|
|
VOLUME /etc/tinc
|
|
|
|
ENTRYPOINT [ "/usr/sbin/tincd" ]
|
|
CMD [ "start", "-D", "-U", "nobody" ]
|