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