-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ghost image based on node v10.15.0 #187
Comments
The current one we're using is v10.16 $ docker run --rm ghost:latest node -v
Unable to find image 'ghost:latest' locally
latest: Pulling from library/ghost
fc7181108d40: Pull complete
a108b1bb7629: Pull complete
c7ba6ff99c0f: Pull complete
5776cc831b44: Pull complete
b2005dcb3156: Pull complete
e9aa34e83ebb: Pull complete
efff56921755: Pull complete
73b7aa064442: Pull complete
cd95522ec6f7: Pull complete
Digest: sha256:df6f0d0b896b733939c456323f9473c8db5fac8d5822dd565ea428f9c4ea5237
Status: Downloaded newer image for ghost:latest
v10.16.0 It looks like Node only maintains the latest minor versions in every supported major version, so this isn't really something we would want to maintain. To get the Node 10.15.0 Dockerfile you'd have to grab an archived copy and then add ghost on top of that using our Dockerfile as a reference/template The earliest 10.15 version we've ever used is 15.3 with https://github.com/docker-library/repo-info/blob/e1d4df3fcad108e481c24a2d59da430da0f9f07e/repos/ghost/remote/2.19.1.md $ docker run --rm ghost@sha256:fba10f78762a639c8431d37af7f831266ade75f253effc9d6c519a6374d9a457 node -v
v10.15.3 |
In that case, we can close this request as it adds unnecessary complexity. |
I forgot you could get old versions without the sha256 hash So making your own Dockerfile with that |
Currently ghost image is generated using node 10.x latest.
It would be nice to have an official image based on node 10.15.0 since it doesn't have the ENOTCONN issue when using tls connections with mysql, and I don't think it will get fixed very soon.
The text was updated successfully, but these errors were encountered: