Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 603 Bytes

File metadata and controls

37 lines (28 loc) · 603 Bytes

honeypot-cn

Docker

docker build -t hpserver .
docker run -p 8080:8080 -p 2121:2121 -p 2222:2222 -p 5001:5001/tcp -p 5001:5001/udp -p 5000:5000 --env-file .env --rm hpserver

Docker Compose Method

Build and start services

docker-compose up --build

Stop services

docker-compose down

.env

Add the following environment variable in .env .

# Telegram 
BOT_TOKEN=your-telegram-bot-token
CHAT_ID=123456789
# IP DB for IP investigation.
IPDB_ID=1a2b3c4d

Access the App

Open in your browser:

http://localhost:5000

(or any other port your app uses)