You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	add obfsproxy-arm
This commit is contained in:
		
							
								
								
									
										30
									
								
								obfsproxy/arm/Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								obfsproxy/arm/Dockerfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,30 @@ | ||||
| # | ||||
| # Dockerfile for obfsproxy-arm (scramblesuit) | ||||
| # | ||||
|  | ||||
| FROM easypi/alpine-arm | ||||
| MAINTAINER EasyPi Software Foundation | ||||
|  | ||||
| RUN set -xe \ | ||||
|     && apk add --no-cache build-base curl python python-dev \ | ||||
|     && curl -sSL https://bootstrap.pypa.io/get-pip.py | python \ | ||||
|     && pip install obfsproxy \ | ||||
|     && apk del build-base curl python-dev | ||||
|  | ||||
| ENV LOG_MIN_SEVERITY info | ||||
| ENV DATA_DIR /var/lib/obfsproxy | ||||
| ENV PASSWORD XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | ||||
| ENV DEST_ADDR openvpn | ||||
| ENV DEST_PORT 1194 | ||||
| ENV RUN_MODE server | ||||
| ENV LISTEN_ADDR 0.0.0.0 | ||||
| ENV LISTEN_PORT 4911 | ||||
|  | ||||
| CMD obfsproxy --log-min-severity=$LOG_MIN_SEVERITY \ | ||||
|               --data-dir=$DATA_DIR \ | ||||
|               scramblesuit \ | ||||
|               --password=$PASSWORD \ | ||||
|               --dest=$DEST_ADDR:$DEST_PORT \ | ||||
|               $RUN_MODE \ | ||||
|               $LISTEN_ADDR:$LISTEN_PORT | ||||
|  | ||||
							
								
								
									
										26
									
								
								obfsproxy/arm/docker-compose.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								obfsproxy/arm/docker-compose.yml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,26 @@ | ||||
| server: | ||||
|   image: easypi/obfsproxy-arm | ||||
|   ports: | ||||
|     - "4911:4911" | ||||
|   external_links: | ||||
|     - openvpn_server_1:openvpn | ||||
|   environment: | ||||
|     - PASSWORD=J23TNHPJPAOQJLTCPLFD4CQYVFY6MEVP | ||||
|     - DEST_ADDR=openvpn | ||||
|     - DEST_PORT=1194 | ||||
|     - LISTEN_ADDR=0.0.0.0 | ||||
|     - LISTEN_PORT=4911 | ||||
|   restart: always | ||||
|  | ||||
| client: | ||||
|   image: easypi/obfsproxy-arm | ||||
|   ports: | ||||
|     - "1194:1194/tcp" | ||||
|   environment: | ||||
|     - PASSWORD=J23TNHPJPAOQJLTCPLFD4CQYVFY6MEVP | ||||
|     - DEST_ADDR=vpn.easypi.info | ||||
|     - DEST_PORT=4911 | ||||
|     - RUN_MODE=client | ||||
|     - LISTEN_ADDR=0.0.0.0 | ||||
|     - LISTEN_PORT=1194 | ||||
|   restart: always | ||||
		Reference in New Issue
	
	Block a user