mirror of
https://github.com/tiyn/container-critique.git
synced 2025-07-09 06:27:47 +02:00
10 lines
265 B
Bash
Executable File
10 lines
265 B
Bash
Executable File
#!/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 \
|
|
-d tiyn/container-critique
|