Clone the repository:
git clone https://github.com/GShwartz/Profile.git
cd Profile-
Build & Run
docker build -t <your-app-name> . docker run -d -p <your-port>:80 --restart unless-stopped <your-app-name>
-
Access
Navigate tohttp://localhost:<port-number>in your browser.
- You can change port 8080 to a port of your choosing.
Example:This will change the port to 9090 so the navigation will look like this:sed -i 's/8080:80/9090:80/' docker-compose.ymlhttp://localhost:9090
- Build & Run
docker-compose up -d --build