A basic link out home page for cgds.uab.edu. Main CGDS website is still
https://sites.uab.edu/cgds.
docker build --no-cache=true --tag ghcr.io/uab-cgds-worthey/cgds-domain-home-page:latest -f Dockerfile .docker build --tag cgds-domain-home-page:local -f Dockerfile .
docker run --rm -p 8080:80 cgds-domain-home-page:localOpen http://localhost:8080/.
After editing files under src/, rebuild the image and run it again. If updates look stale, rebuild with --no-cache=true.
The directory structure below shows the nature of files/directories used in this repo.
cgds-domain-home-page
├── CHANGELOG.md <- Log of changes made
├── Dockerfile <- Builds the nginx image used to serve the static site
├── README.md
├── etc
│ └── default.conf <- nginx configuration
└── src <- Static site source files
├── images <- Image assets used by the page
├── index.html
├── news.js
└── style.css