Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

v0.18.5 is not tagged in Docker Hub #2231

Closed
jamtur01 opened this issue Apr 6, 2022 · 2 comments
Closed

v0.18.5 is not tagged in Docker Hub #2231

jamtur01 opened this issue Apr 6, 2022 · 2 comments
Labels
question The issue's author needs more information s: fixed was fixed or solution offered

Comments

@jamtur01
Copy link
Contributor

jamtur01 commented Apr 6, 2022

Sending build context to Docker daemon  575.5kBStep 1/20 : FROM gobuffalo/buffalo:v0.18.5 as builder
manifest for gobuffalo/buffalo:v0.18.5 not found

Thanks!

@sio4
Copy link
Member

sio4 commented Apr 6, 2022

The latest version of the docker image is v1.18.3. It's a little tricky, this package, gobuffalo/buffalo, is the core library for the buffalo apps while the separated package gobuffalo/cli provides buffalo cli. The docker image follows the version of the buffalo cli since the image is basically for development.

@sio4 sio4 added the question The issue's author needs more information label Apr 6, 2022
@fasmat
Copy link
Member

fasmat commented Apr 7, 2022

To add to what @sio4 said:

The reason that the newest docker image is versioned according to the CLI at version v0.18.3 is because that's the only thing that is included in the image. The gobuffalo/buffalo library isn't included in the docker image, it is referenced by your go.mod file and is fetched during the build process.

So if you want to use the newest gobuffalo/buffalo library you can just call:

go get github.com/gobuffalo/buffalo
go mod tidy       # optional to remove unneeded dependencies from your go.mod and go.sum files

and commit the changes to your repository.

@fasmat fasmat closed this as completed Apr 7, 2022
@sio4 sio4 added the s: fixed was fixed or solution offered label Sep 26, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
question The issue's author needs more information s: fixed was fixed or solution offered
Projects
None yet
Development

No branches or pull requests

3 participants