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 |
http://bridgingIT.github.io/go-workshop
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)
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)