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.
beaker-blog/rebuild.sh

10 lines
230 B

#!/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