10 lines
146 B
Bash
10 lines
146 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
docker build -t decrypthis .
|
||
|
|
||
|
docker run -d \
|
||
|
-p 8020:80 \
|
||
|
--name decrypthis \
|
||
|
--restart=unless-stopped \
|
||
|
decrypthis
|