Questions tagged [go-micro]

Pluggable RPC framework for writing microservices in Go (golang).

Pluggable RPC framework for writing microservices in Go (golang). It's part of the Micro toolkit.
go-micro on GitHub.

48 questions
-1
votes
1 answer

How to import go interface package in my main.go?

For clarity most of the code is removed to focus more on the question. I have a go-micro server file called main.go with the following code: package main import ( "fmt" "strings" "github.com/micro/go-micro" …
Alireza
  • 6,497
  • 13
  • 59
  • 132
-1
votes
1 answer

Service seems not be able to break out of docker-container

I have a go-micro service, and I want it to register at a Consul running in a container. When doing this just from the command prompt, this runs fine. I check the logs from the consul-container and see everything is okay. Registering and…
Bert Verhees
  • 1,057
  • 3
  • 14
  • 25
-2
votes
2 answers

How to freeze micro version with dependencies?

I want to build a docker image with a fixed version of micro and go dependencies. I plan to do it with dep: git checkout git@github.com:micro/micro.git dep ensure git add Gopkg.toml git add Gopkg.lock # Build micro CGO_ENABLED=0 GOOS=linux go build…
pprishchepa
  • 997
  • 1
  • 9
  • 21
1 2 3
4