mirror of https://github.com/tiyn/beaker-blog
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.
10 lines
230 B
10 lines
230 B
3 years ago
|
#!/bin/sh
|
||
|
docker stop beaker-blog
|
||
|
docker rm beaker-blog
|
||
|
docker build . -t tiyn/beaker-blog
|
||
|
docker run --name beaker-blog \
|
||
|
--restart unless-stopped \
|
||
|
-p "5000:5000" \
|
||
|
-e FLASK_ENV=development \
|
||
|
-d tiyn/beaker-blog
|