No description
Find a file
2025-02-03 00:37:52 +10:30
docs Update raspberrypi services list 2025-02-03 00:20:51 +10:30
.gitignore Remove htpasswd file from VCS 2025-02-03 00:27:59 +10:30
Dockerfile Add server 2025-02-03 00:26:07 +10:30
mkdocs.yml Use RTD theme 2025-02-01 03:20:00 +10:30
nginx.conf Add server 2025-02-03 00:26:07 +10:30
passwd.sh Update password instructions 2025-02-03 00:29:54 +10:30
README.md Update port number 2025-02-03 00:37:52 +10:30
redeploy.sh Update port number 2025-02-03 00:37:52 +10:30

Notes server

Build and run

# Set access credentials.
./passwd.sh username password

# Build/rebuild the image.
docker build --no-cache -t notes-server .

# Run the image, listening on port 8080.
docker run -p 42069:80 -t notes-server

Auth credentials setup

# Overwrite the htpasswd file with new user credentials.
htpasswd -nb username password > auth.htpasswd