-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mdillion/postgis image was discontinued... docker-entrypoint.sh --help can no longer be used to prepopulate data docker-library/postgres#636 Use healthcheck to determine if postgres is ready
- Loading branch information
1 parent
0df3efc
commit fe44f63
Showing
3 changed files
with
13 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
# https://github.com/docker-library/postgres/issues/319 | ||
|
||
FROM mdillon/postgis:11-alpine AS load | ||
FROM postgis/postgis:11-2.5-alpine | ||
COPY ./docker-entrypoint-initdb.d/ /docker-entrypoint-initdb.d/ | ||
ENV PGDATA=/pgdata | ||
RUN docker-entrypoint.sh --help | ||
|
||
FROM mdillon/postgis:11-alpine | ||
COPY --from=load /pgdata /var/lib/postgresql/data/ |