Sign inSign up

changhui/pritunl

By changhui

Updated 10 months ago

hack the pritunl

Image
0

298

changhui/pritunl repository overview

Pritunl cracked version

version: '3'
services:
    mongodb:
        image: mongo:latest
        restart: always
        volumes:
            - ./mongodb:/data/db

    pritunl:
        # Use the following to build the image from source (assuming you're running inside the repository).
        image: changhui/pritunl 
        restart: always
        depends_on:
            - mongodb
        privileged: true
        sysctls:
            - net.ipv6.conf.all.disable_ipv6=0
        links:
            - mongodb
        volumes:
            - /etc/localtime:/etc/localtime:ro
        ports:
            # Under this port the Pritunl web interface will be exposed (for reverse proxies)
            - 443:443
            # The following are the two default ports for the tcp+udp servers (you may edit these as needed!)
            - 1194:1194
            - 1194:1194/udp
        environment:
            - TZ=UTC
            - MONGODB_URI=mongodb://mongodb:27017/pritunl

Tag summary

Content type

Image

Digest

sha256:4488f8644

Size

178.4 MB

Last updated

10 months ago

docker pull changhui/pritunl