Skip to content

Instantly share code, notes, and snippets.

@ncomet
Created May 2, 2022 14:51
Show Gist options
  • Save ncomet/08acac2345f9959afb1d7abe6b308439 to your computer and use it in GitHub Desktop.
Save ncomet/08acac2345f9959afb1d7abe6b308439 to your computer and use it in GitHub Desktop.
core testcontainers logic
type image struct {
name string
port string
}
var (
allGames domain.AllGames
mongoDB = image{
name: "mongo:5.0.8",
port: "27017",
}
)
type container struct {
testcontainers.Container
URI string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment