The GC Digital Library Application Developer's blog in Hugo using theme Zzo.
- 2020-03-10: Production launch after numerous changes committed. Moving to DigitalOcean in deployment below.
- 2020-03-04: Launch of new blog using Zzo theme. Initial
master
branch contains just a copy of the theme'sexampleSite
directory copied to the project root.
This blog is intended to be deployed using my dockerized-server approach, and the command stream used to launch the blog on my summitt-dweller-DO-docker
droplet at DigitalOcean:
NAME=dlad-blog
HOST=dlad.summittdweller.com
IMAGE="mcfatem/dlad-blog"
docker container run -d --name ${NAME} \
--label traefik.backend=${NAME} \
--label traefik.docker.network=web \
--label "traefik.frontend.rule=Host:${HOST}" \
--label traefik.port=80 \
--label com.centurylinklabs.watchtower.enable=true \
--network web \
--restart always \
${IMAGE}