Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 706 Bytes

DOCKER.md

File metadata and controls

27 lines (21 loc) · 706 Bytes

logo

💙🤍DOCKER🤍💙

📘Table of Contents

  1. 📘Table of Contents
  2. 🚀Docker

🚀Docker

  • Pull the latest image and run the container
sudo docker pull ghcr.io/eliasdh-com/XXX-frontend:latest
sudo docker run --name XXX-frontend-container -p 80:80 -d ghcr.io/eliasdh-com/XXX-frontend:latest
  • Check the logs
sudo docker logs displaylevelupbe-frontend-container
  • Stop and remove the existing container and image
sudo docker stop XXX-frontend-container
sudo docker rm XXX-frontend-container
sudo docker rmi ghcr.io/eliasdh-com/XXX-frontend:latest