Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 632 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 632 Bytes

CSANZ Website

This repository stores a copy of the CSANZ website, initally created in 2014. The existing HTML files are wrapped in a Nginx Docker container for serving from a Docker swarm.

Development

Build the image and tag it as csanz:

docker build . -t csanz

Run the container locally:

docker run --rm -p 8080:8080 csanz

View the website in a web browser at localhost:8080.

Deployment

The docker-compose.yml file contains basic settings for deploying to the UCCSER Docker Swarm. The stack can be deployed with the following command:

docker stack deploy csanz -c docker-compose.yml