mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
236 B
11 lines
236 B
5 years ago
|
#!/bin/sh
|
||
|
docker stop hastebin
|
||
|
docker rm hastebin
|
||
|
docker pull rlister/hastebin:latest
|
||
|
docker run --name hastebin \
|
||
|
--restart unless-stopped \
|
||
|
-p 7777:7777 \
|
||
|
-v hastebin:/app/data \
|
||
|
-e STORAGE_TYPE=file \
|
||
|
-d rlister/hastebin:latest
|