Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 1.94 KB

readme.md

File metadata and controls

28 lines (25 loc) · 1.94 KB

Go Workshop

Folders

folder intro
docs Slides for the Workshop (open index.html)
moviedb-docker contains a docker-compose file that creates a mongodb, mongodb-express and moviedb-java endpoint
moviedb-java Spring Boot Implementation of moviedb
moviedb-go Go Implementation of moviedb
postman contains a postman collection for testing of the moviedb
soundex-go Go Implementation of Soundex
website-checker-go Go Implementation of Website Checker

Start the Slides

http://bridgingIT.github.io/go-workshop

Build docker image for moviedb-java

Switch to folder moviedb-java and use Dockerfile to build image:

docker buildx build --platform linux/arm64/v8 -t moviedb-java:latest -f Dockerfile .` #Macbook M1
docker buildx build --platform linux/amd64 -t moviedb-java:latest -f Dockerfile .` #64-bit Architektur (Linux, Windows)

Build docker image for moviedb-go

Switch to folder moviedb-go and use Dockerfile to build image:

docker buildx build --platform linux/arm64/v8 -t moviedb-go:latest -f Dockerfile .` #Macbook M1
docker buildx build --platform linux/amd64 -t moviedb-go:latest -f Dockerfile .` #64-bit Architektur (Linux, Windows)