Skip to content

Commit fbdb70e

Browse files
authored
Remove workaround to create the postgres db (fix #886) (#961)
This reverts commit 4df6f79. The upstream bug has been fixed in nextcloud/server#15187 Signed-off-by: J0WI <J0WI@users.noreply.github.com>
1 parent 15ea896 commit fbdb70e

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
POSTGRES_PASSWORD=
2-
POSTGRES_USER=postgres
2+
POSTGRES_DB=nextcloud
3+
POSTGRES_USER=nextcloud

.examples/docker-compose/insecure/postgres/apache/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ services:
1818
- nextcloud:/var/www/html
1919
environment:
2020
- POSTGRES_HOST=db
21-
- POSTGRES_DB=nextcloud
2221
env_file:
2322
- db.env
2423
depends_on:
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
POSTGRES_PASSWORD=
2-
POSTGRES_USER=postgres
2+
POSTGRES_DB=nextcloud
3+
POSTGRES_USER=nextcloud

.examples/docker-compose/insecure/postgres/fpm/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ services:
1616
- nextcloud:/var/www/html
1717
environment:
1818
- POSTGRES_HOST=db
19-
- POSTGRES_DB=nextcloud
2019
env_file:
2120
- db.env
2221
depends_on:
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
POSTGRES_PASSWORD=
2-
POSTGRES_USER=postgres
2+
POSTGRES_DB=nextcloud
3+
POSTGRES_USER=nextcloud

.examples/docker-compose/with-nginx-proxy/postgres/apache/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ services:
1919
- LETSENCRYPT_HOST=
2020
- LETSENCRYPT_EMAIL=
2121
- POSTGRES_HOST=db
22-
- POSTGRES_DB=nextcloud
2322
env_file:
2423
- db.env
2524
depends_on:
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
POSTGRES_PASSWORD=
2-
POSTGRES_USER=postgres
2+
POSTGRES_DB=nextcloud
3+
POSTGRES_USER=nextcloud

.examples/docker-compose/with-nginx-proxy/postgres/fpm/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ services:
1616
- nextcloud:/var/www/html
1717
environment:
1818
- POSTGRES_HOST=db
19-
- POSTGRES_DB=nextcloud
2019
env_file:
2120
- db.env
2221
depends_on:

0 commit comments

Comments
 (0)