yosifkit
yosifkit
You can still have `$PG_MAJOR` style directories on your host without having to set `PGDATA`. ```console docker run --rm -it \ -v /srv/data/postgresql/11/:/var/lib/postgresql/data/ \ postgres:11 ```
I'm not sure what the difference between your Dockerfile and the PostGIS Dockerfiles is, because they are working over there. https://github.com/postgis/docker-postgis/tree/4b53c954472c548c6d63e833404952b6bfb6942a/11-3.3 My guess is that it might be related to...
@JonasT, The only complete way is to have images for each set of supported versions; to ensure users can upgrade between them. @tianon, has a set of them in [tianon/docker-postgres-upgrade](https://github.com/tianon/docker-postgres-upgrade)....
Thinking about this initialization in a temporary directory and I *think* the set of users we could break are ones using the full path (`/var/lib/postgresql/data/`) when running `sed` on `pg_hba.conf`...
Yeah, I think this is more a documentation adjustment than a change to the image. Users should be using the `golang` image primarily to compile and should not be using...
Background: >Tags in the [official-images] library file[s] are only built through an update to that library file or as a result of its base image being updated (ie, an image...
> && cp -vr ./node_modules/ghost-storage-adapter-s3 ./content/storage But why do you need to move the adapter inside of ghost content? Shouldn't `npm install` (or `yarn add`) be enough for node and...
Now as to the content `VOLUME` which is the original question. > What useful purpose is it serving? The way I understand it, the `content/` of ghost is considered the...
A `VOLUME` line is not necessary in the Dockerfile for `--volumes-from` or `-v` to work (yes, you would need a `-v` on the first container for `--volumes-from` to work to...
> The `docker run` command initializes the **newly created** volume with any data that exists at the specified location within the base image. > https://docs.docker.com/engine/reference/builder/#volume (emphasis added) Just to ensure...