notes/docker/run.sh

10 lines
165 B
Bash
Raw Normal View History

#!/bin/bash
# Run the notes-server image.
docker run \
--name notes-server \
-v "${PWD}/../hugo/public:/usr/share/nginx/html" \
-p 42069:80 \
notes-server