Sign inSign up

zhufuyi/sponge

By zhufuyi

Updated about 1 year ago

sponge command ui service.

Image
0

2.8K

zhufuyi/sponge repository overview

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.

Tag summary

Content type

Image

Digest

sha256:46803b58a

Size

31.4 MB

Last updated

about 1 year ago

docker pull zhufuyi/sponge