mirror of
https://github.com/dmuth/diceware.git
synced 2024-11-21 08:26:29 -05:00
14 lines
188 B
Bash
14 lines
188 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Script to run the script in prod mode
|
||
|
#
|
||
|
|
||
|
# Errors are fatal
|
||
|
set -e
|
||
|
|
||
|
# Change to the parent directory
|
||
|
pushd $(dirname $0)/.. > /dev/null
|
||
|
|
||
|
docker run --rm -p 80:80 diceware
|
||
|
|