4 lines
143 B
Bash
Executable File
4 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
docker rm -f canteenfood
|
|
docker build -t canteenfood . && \
|
|
docker run --name=canteenfood --rm -p 127.0.0.1:1337:80 -it canteenfood |