Option 1: Docker Run
docker run -d --name sponge -p 24631:24631 zhufuyi/sponge:latest -l -a http://your_host_ip:24631
Option 2: Docker Compose
The content of the docker-compose.yaml file is as follows:
version: "3.7"
services:
sponge:
image: zhufuyi/sponge:latest
container_name: sponge
restart: always
command: ["-l","-a","http://your_host_ip:24631"]
ports:
- "24631:24631"
Start the service:
docker-compose up -d
After a successful Docker deployment, access http://your_host_ip:24631 in your browser.
Content type
Image
Digest
sha256:46803b58a…
Size
31.4 MB
Last updated
about 1 year ago
docker pull zhufuyi/sponge