9 lines
165 B
Bash
Executable file
9 lines
165 B
Bash
Executable file
#!/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
|
|
|