go mod download
docker build -t sikoba-tm/api .
docker run -d -p 8080:8080 sikoba-tm/api
In order to start the API and Database at once, use the following command
docker-compose up -d
To apply code changes, rebuild the container using
docker-compose build
Stop and destroy container using following command
docker-compose down