5 lines
179 B
Bash
Executable File
5 lines
179 B
Bash
Executable File
#!/bin/bash
|
|
docker rm -f canteenfood_patched
|
|
docker build -t canteenfood_patched . && \
|
|
docker run --name=canteenfood_patched -d --rm -p 127.0.0.1:1338:80 -it canteenfood_patched
|