Dockerized React frontend for Gear Shifter, served with Nginx.
155
The frontend application for the Gear Shifter project, built with React and Vite and served using Nginx.
The frontend uses a multi-stage Docker build.
The Docker image is created in two stages:
This keeps the final production image lightweight and optimized for serving static files.
Pull the latest image from Docker Hub:
docker pull jinitmewada/gear-shifter-frontend:latest
To run container:
docker run -d \
--name gear-shifter-frontend \
-p 3000:80 \
jinitmewada/gear-shifter-frontend:latest
The application will be available on:
http://localhost:3000
Content type
Image
Digest
sha256:feaa4e1be…
Size
38.3 MB
Last updated
11 days ago
docker pull jinitmewada/gear-shifter-frontend