Code repository for Gorkha Dev Portfolio website.
To get started with the project, use the docker compose
command to manage your developer environment.
Go through the following instructions to find how to manage different scenarios during development:
To bring up the server, run the following command:
docker compose up -d
To stop the server, run the following command:
docker compose stop
To start the stopped server, run the following command:
docker compose start
While working you might need to restart server on configuration changse, then restart the server by running following command:
docker compose restart
If you want to remove the server and start fresh, then run the following command:
docker compose down