An open API service indexing awesome lists of open source software.

https://github.com/cyrilsebastian1811/go-web-app

Web application to display time in different time zones
https://github.com/cyrilsebastian1811/go-web-app

golang jenkins

Last synced: 2 months ago
JSON representation

Web application to display time in different time zones

Awesome Lists containing this project

README

        

# gowebapp
Simple web application written in Go

### Build Docker Image
#### MacOS
docker build -t cyrilsebastian1811/goapp:latest .

#### Linux
sudo docker build -t cyrilsebastian1811/goapp:latest .

### Run Docker Image
#### MacOS
docker run -dt --name goapp -p 8000:8000 cyrilsebastian1811/goapp:latest

#### Linux
sudo docker run -dt --name goapp -p 8000:8000 cyrilsebastian1811/goapp:latest

### Push the docker image to you repository
#### MacOS
docker push cyrilsebastian1811/goapp:latest

#### Linux
sudo docker push cyrilsebastian1811/goapp:latest