Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 628 Bytes

DEPLOYMENT.md

File metadata and controls

21 lines (15 loc) · 628 Bytes

Using the GitHub Container Registry for Deployment

  1. Create a personal token: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens
docker login ghcr.io --username github-account
[Paste your GitHub token on this prompt]
  1. Build the image for the server
docker image build --platform linux/amd64 -t cluster-jupyter .
  1. Tag and push your Docker images
docker tag cluster-jupyter ghcr.io/eth-peach-lab/datascience-visualisation/cluster-jupyter:latest
docker push ghcr.io/eth-peach-lab/datascience-visualisation/cluster-jupyter:latest