Skip to content

santaklouse/delegated-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

delegated-docker

Docker Pulls

PlayWithDocker

Deploy

DeleGate is a multipurpose proxy server which relays various application protocols on TCP/IP or UDP/IP

https://its-more.jp/delegate/ftp/pub/DeleGate/Manual.htm#SRCIF

docker-compose.yml

version: "3.9"
services:
  delegated:
    image: santaklouse/delegated:latest
    command: "-P1080 SERVER=socks SSLTUNNEL=127.1:4444"
    ports:
      - "1080:1080"
    depends_on:
      i2p:
        condition: service_healthy
    restart: always
  i2p:
    image: santaklouse/i2p:latest
    ports:
      - "4444:4444"
      - "4445:4445"
      - "6668:6668"
      - "7657:7657"
    healthcheck:
      test: [ "CMD", "curl", "-f", "http://127.0.0.1:4444" ]
      interval: 1m30s
      timeout: 5s
      retries: 10
      start_period: 10s

up and running

# server
$ docker-compose up -d

# client
$ curl -x socks5h://localhost:1080 ifconfig.ovh

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages