c-honeypot-adminpanel is the admin panel for this honeypot
docker tuto
- Docker Compose Build (recommended)
- Dockerfile Build
docker-compose build --no-cache
--no-cache
: build without cache
docker-compose up -d
-d
: run in background
docker-compose down
docker build --no-cache -t c-honeypot .
--no-cache
: build without cache
-t
: tag name
c-honeypot
: image name
.
: build context
docker run --rm -d -p 45300:65400 --name=honeypot1 c-honeypot
--rm
: remove container when it exits
-d
: run in background
-p
: port mapping. 45300
is the host port, 65400
is the container port
--name
: container name
c-honeypot
: image name
docker stop honeypot1
honeypot1
: container name
docker rm honeypot1
honeypot1
: container name
docker rmi c-honeypot
c-honeypot
: image name