The master branch will follow alpine:latest. See `openvpn-2.x` branches for more stability. Related #267
		
			
				
	
	
		
			32 lines
		
	
	
		
			908 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			908 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Original credit: https://github.com/jpetazzo/dockvpn
 | 
						|
 | 
						|
# Smallest base image
 | 
						|
FROM alpine:latest
 | 
						|
 | 
						|
MAINTAINER Kyle Manna <kyle@kylemanna.com>
 | 
						|
 | 
						|
# Testing: pamtester
 | 
						|
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \
 | 
						|
    apk add --update openvpn iptables bash easy-rsa openvpn-auth-pam google-authenticator pamtester && \
 | 
						|
    ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin && \
 | 
						|
    rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/*
 | 
						|
 | 
						|
# Needed by scripts
 | 
						|
ENV OPENVPN /etc/openvpn
 | 
						|
ENV EASYRSA /usr/share/easy-rsa
 | 
						|
ENV EASYRSA_PKI $OPENVPN/pki
 | 
						|
ENV EASYRSA_VARS_FILE $OPENVPN/vars
 | 
						|
 | 
						|
VOLUME ["/etc/openvpn"]
 | 
						|
 | 
						|
# Internally uses port 1194/udp, remap using `docker run -p 443:1194/tcp`
 | 
						|
EXPOSE 1194/udp
 | 
						|
 | 
						|
CMD ["ovpn_run"]
 | 
						|
 | 
						|
ADD ./bin /usr/local/bin
 | 
						|
RUN chmod a+x /usr/local/bin/*
 | 
						|
 | 
						|
# Add support for OTP authentication using a PAM module
 | 
						|
ADD ./otp/openvpn /etc/pam.d/
 |