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.
|
#!/bin/sh
|
|
docker stop container-critique
|
|
docker rm container-critique
|
|
docker build . -t tiyn/container-critique
|
|
docker run --name container-critique \
|
|
--restart unless-stopped \
|
|
-p "5000:5000" \
|
|
-e FLASK_ENV=development \
|
|
-v data:/blog/data
|
|
-d tiyn/container-critique
|