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