Run the camper_van Campfire <-> IRC bridge
393
Run the camper_van Camfire <-> IRC bridge in a Docker container.
To pull and run the image from the Docker Index, simply run:
docker run jimeh/camper_van
This will download the image if needed, and print camper_van's --help
message. To actually run camper_van you must at least have to tell it an IP
address to bind to:
docker run -d -p 6667 jimeh/camper_van 0.0.0.0
This runs camper_van listening for incoming connections from any IP address. However camper_van's default 6667 port is not exposed on the host. To find out what port it's been mapped to run:
docker ps
Or if you want to specify which port to map the default 6667 port to:
docker run -d -p 26667:6667 jimeh/camper_van 0.0.0.0
Resulting in port 26667 on the host mapping to 6667 within the container.
git clone https://github.com/jimeh/docker-camper_van.gitdocker build -t $(whoami)/camper_van .docker run -d -p 6667 jimeh/camper_van 0.0.0.0Content type
Image
Digest
sha256:11565107b…
Size
108.5 MB
Last updated
almost 11 years ago
docker pull jimeh/camper_van