7 lines
119 B
Bash
Executable File
7 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker build -t fit .
|
|
docker stop fit
|
|
docker rm fit
|
|
docker run --name fit --restart=unless-stopped -d fit
|