piclist-core https://github.com/Kuingsmile/piclist-core
50K+
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
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
You can use docker exec to install plugins in docker.
docker exec -it piclist sh
picgo install picgo-plugin-xxx
You can use docker exec to change config in docker.
docker exec -it piclist sh
picgo set xxx
Content type
Image
Digest
sha256:7053a9df2…
Size
100.4 MB
Last updated
4 months ago
docker pull kuingsmile/piclist