Sign inSign up

kuingsmile/piclist

By kuingsmile

•Updated 4 months ago

piclist-core https://github.com/Kuingsmile/piclist-core

Image
Developer tools
3

50K+

kuingsmile/piclist repository overview

⁠How to use in docker
⁠docker run

Change the ./piclist to your own path, where you put your config.json file under the directory, and change the piclist123456 to your own secret key.

docker run -d \
  --name piclist \
  --restart always \
  -p 36677:36677 \
  -v "./piclist:/root/.piclist" \
  kuingsmile/piclist:latest \
  node /usr/local/bin/picgo-server -k piclist123456
⁠docker-compose

download docker-compose.yml from piclist-core repo, or copy the following content to docker-compose.yml:

version: '3.3'

services:
  node:
    image: 'kuingsmile/piclist:latest'
    container_name: piclist
    restart: always
    ports:
      - 36677:36677
    volumes:
      - './piclist:/root/.piclist'
    command: node /usr/local/bin/picgo-server -k piclist123456

You can change the ./piclist to your own path and change the command to your own secret key.

Then run:

docker-compose up -d
⁠Install plugins in docker

You can use docker exec to install plugins in docker.

docker exec -it piclist sh
picgo install picgo-plugin-xxx
⁠Change config in docker

You can use docker exec to change config in docker.

docker exec -it piclist sh
picgo set xxx

Tag summary

Content type

Image

Digest

sha256:7053a9df2…

Size

100.4 MB

Last updated

4 months ago

docker pull kuingsmile/piclist