From f9dcd9e55b3ba10fae9247fbc889da9358fdd5f0 Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Mon, 11 Jun 2018 22:08:56 +0000 Subject: [PATCH] Run update.sh --- owncloud/README.md | 4 ++++ postgres/README.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/owncloud/README.md b/owncloud/README.md index 64b39263f..42261eff5 100644 --- a/owncloud/README.md +++ b/owncloud/README.md @@ -14,6 +14,10 @@ WARNING: --> +# **DEPRECATION NOTICE** + +This image has been deprecated in favor of the [official `owncloud/server` image](https://hub.docker.com/r/owncloud/server/) provided, maintained, and supported by [ownCloud upstream](https://owncloud.org/download/#owncloud-server-docker). The images found here will receive no further updates after 2018-12-31 (Dec 31, 2018). Please adjust your usage accordingly. + # Supported tags and respective `Dockerfile` links - [`10.0.8-apache`, `10.0-apache`, `10-apache`, `apache`, `10.0.8`, `10.0`, `10`, `latest` (*10.0/apache/Dockerfile*)](https://github.com/docker-library/owncloud/blob/a4e69c45fa3910d5e7f2f090cae185b58c6523dc/10.0/apache/Dockerfile) diff --git a/postgres/README.md b/postgres/README.md index 4f2fa3dcd..038a75e31 100644 --- a/postgres/README.md +++ b/postgres/README.md @@ -218,7 +218,7 @@ The three easiest ways to get around this: # How to extend this image -If you would like to do additional initialization in an image derived from this one, add one or more `*.sql`, `*.sql.gz`, or `*.sh` scripts under `/docker-entrypoint-initdb.d` (creating the directory if necessary). After the entrypoint calls `initdb` to create the default `postgres` user and database, it will run any `*.sql` files and source any `*.sh` scripts found in that directory to do further initialization before starting the service. +If you would like to do additional initialization in an image derived from this one, add one or more `*.sql`, `*.sql.gz`, or `*.sh` scripts under `/docker-entrypoint-initdb.d` (creating the directory if necessary). After the entrypoint calls `initdb` to create the default `postgres` user and database, it will run any `*.sql` files, run any executable `*.sh` scripts, and source any non-executable `*.sh` scripts found in that directory to do further initialization before starting the service. For example, to add an additional user and database, add the following to `/docker-entrypoint-initdb.d/init-user-db.sh`: