Skip to content

sikoba-tm/api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SIKOBA API

Installing Dependencies

go mod download

Building Container

docker build -t sikoba-tm/api .

Running the Container

docker run -d -p 8080:8080 sikoba-tm/api

Development using Docker Compose

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