J0WI
b3f7d00d9b
Document Redis secret ( #1337 )
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
5 years ago
J0WI
c4a2995631
Minor fixes and typos ( #1336 )
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
5 years ago
tetebueno
380c1645eb
Environment variables in docker-compose section ( #1316 )
...
* Environment variables in docker-compose section
Docker-compose file in the example was missing database configuration environment variables of the app container, making the stack to use SQLite by default instead of the DB container.
Didn't add `NEXTCLOUD_ADMIN_*` variables since this addresses the DB being configured with SQLite. This still works setting up admin credentials on first NC run.
Signed-off-by: tetebueno <9064236+tetebueno@users.noreply.github.com>
* Fixing FPM version too.
Signed-off-by: tetebueno <9064236+tetebueno@users.noreply.github.com>
5 years ago
J0WI
6fd2227a3d
Add GitHub CI badge ( #1301 )
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
5 years ago
Tobias Messner
d1d4467e34
Fix typo in README ( #1244 )
...
Signed-off-by: Tobias Messner <tobias@zusor.io>
5 years ago
Adam Jenkins
84c775e440
Adds ability to configure swift object store though environment ( #1243 )
...
Signed-off-by: Adam Jenkins <adamjenkins1701@gmail.com>
5 years ago
Pierre Ozoux
27c54cdd9e
Adds ability to configure S3 object stores via environment variables ( #1227 )
...
* Adds ability to configure S3 object stores via environment variables
closes #1193 #1124 #1134
Co-authored-by: Adam Jenkins <adamjenkins1701@gmail.com>
Co-authored-by: Stephen Cuppett <scuppett@redhat.com>
* Update .config/s3.config.php
Co-authored-by: Adam Jenkins <adamjenkins1701@gmail.com>
Co-authored-by: Stephen Cuppett <scuppett@redhat.com>
5 years ago
pierreozoux
7a286da8c3
Revert "Adds ability to configure S3 object stores via environment variables"
...
This reverts commit 47032fddb6 .
5 years ago
pierreozoux
47032fddb6
Adds ability to configure S3 object stores via environment variables
...
closes #1193 #1124 #1134
Co-authored-by: Adam Jenkins <adamjenkins1701@gmail.com>
Co-authored-by: Stephen Cuppett <scuppett@redhat.com>
5 years ago
J0WI
1e6d0620af
Revert "Fix triggering install and update script ( #1181 )"
...
This reverts commit de90bed706 .
6 years ago
stackcoder
de90bed706
Fix triggering install and update script ( #1181 )
...
* Match cmd provided by Dockerfile again with entrypoint.sh
Signed-off-by: stackcoder <stackcoder@gmail.com>
* Fixup README.md
Signed-off-by: stackcoder <stackcoder@gmail.com>
6 years ago
J0WI
3ac6fde8d6
Remove db prefix option ( #1131 )
...
* Remove db prefix option
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
* Upgrade to 18.0.6
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
6 years ago
J0WI
5bd63028a7
Add mips64le badge
6 years ago
J0WI
9d807aa7ad
Update badges
6 years ago
András Maróy
6d2390726f
Expose reverse proxy related configuration as environment variables ( #1048 )
...
* Expose reverse proxy related configuration as environment variables
Signed-off-by: András Maróy <andras@maroy.hu>
* Update README.md
Co-Authored-By: J0WI <J0WI@users.noreply.github.com>
Signed-off-by: András Maróy <andras@maroy.hu>
* Update README.md
Co-Authored-By: J0WI <J0WI@users.noreply.github.com>
Signed-off-by: András Maróy <andras@maroy.hu>
* Add default values for reverse proxy config from environment
Signed-off-by: András Maróy <andras@maroy.hu>
* Change reverse proxy default values to null
Signed-off-by: András Maróy <andras@maroy.hu>
* Store environment variables in vars in reverse-proxy config
Signed-off-by: András Maróy <andras@maroy.hu>
* Merge reverse proxy configs
Signed-off-by: András Maróy <andras@maroy.hu>
* Move overwrite parameters to reverse proxy section in the readme
Signed-off-by: András Maróy <andras@maroy.hu>
* Add reverse proxy config to 19.0-beta images
Signed-off-by: András Maróy <andras@maroy.hu>
* Remove default null from reverse proxy config to avoid breaking existing deployments
Signed-off-by: András Maróy <andras@maroy.hu>
Co-authored-by: J0WI <J0WI@users.noreply.github.com>
6 years ago
J0WI
6274e06ef4
Update url to occ ( #1062 )
6 years ago
kesselb
63438ef792
Disable rewriteip for apache image ( #1010 )
...
* Disable rewrite ip for apache image
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Run update.sh
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
6 years ago
Boris Gorbylev
efe3caebdc
Compatibility with docker secrets ( #560 )
...
* Read passwords from files specified with *_PASSWORD_FILE variables (docker secrets)
Fixes #731
Signed-off-by: Boris Gorbylev <ekho@ekho.name>
Signed-off-by: Jonas Thelemann <e-mail@jonas-thelemann.de>
* Add NEXTCLOUD_ADMIN_USER, POSTGRES_DB, POSTGRES_USER
Signed-off-by: Jonas Thelemann <e-mail@jonas-thelemann.de>
* Fix Variables
Signed-off-by: Jonas Thelemann <e-mail@jonas-thelemann.de>
Co-authored-by: Jonas Thelemann <e-mail@jonas-thelemann.de>
6 years ago
NeroBurner
d5ecc2149f
Readme: improve migration from existing section ( #894 )
...
* README: add postgresql commands to migration section
Signed-off-by: NeroBurner <pyro4hell@gmail.com>
* README: fix migration copy commands
When the docker-compose up is run the first time the nextcloud
directories are created. When after that the `docker cp` command copies
whole folders they are added as subfolders to the existing folders.
For example, when copying the data folder with
```
docker cp ./data/ nextcloud_app_1:/var/www/html/data
```
afterwards the data folder is in `/var/www/html/data/data`
Signed-off-by: NeroBurner <pyro4hell@gmail.com>
* README: migration: mention custom_apps config
Signed-off-by: NeroBurner <pyro4hell@gmail.com>
6 years ago
Achilleas Pipinellis
f0762a282a
Clean up the SMTP info
...
- Add STARTTLS
- Add alternative 587 port
Signed-off-by: Achilleas Pipinellis <axilleas@axilleas.me>
6 years ago
ykcab
15e6fcb316
Fine tune of grammar and spell checks. ( #888 )
...
* grammar and spell checks
Signed-off-by: ykcab <16911521+ykcab@users.noreply.github.com>
* grammar and spell checks
Signed-off-by: ykcab <16911521+ykcab@users.noreply.github.com>
6 years ago
algakzru
73ff5c860d
Set redis password ( #856 )
6 years ago
J0WI
df048873ab
Update build badges
7 years ago
J0WI
260de1e357
Fix SQLite paragraph title
7 years ago
Tilo Spannagel
f0fd46a989
Revert "Compatibility with docker secrets ( Fix #560 )"
...
[skip travis]
Signed-off-by: Tilo Spannagel <development@tilosp.de>
7 years ago
J0WI
343169d233
Compatibility with docker secrets ( Fix #560 )
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
7 years ago
J0WI
8680beee04
Clarify major version upgrade procedure
...
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
7 years ago
Rodrigo
dc04397618
Set SMTP via environment vars. ( #698 )
...
* Set SMTP via environment vars.
Signed-off-by: Rodrigo Aguilera <hi@rodrigoaguilera.net>
* Add SMTP instructions to the readme.
Signed-off-by: Rodrigo Aguilera <hi@rodrigoaguilera.net>
* Run update.sh for 16.0 release.
Signed-off-by: Rodrigo Aguilera <hi@rodrigoaguilera.net>
7 years ago
gusttt
69ebdf0efd
Small typo in readme.md
...
Signed-off-by: gusttt <gusttt@users.noreply.github.com>
7 years ago
Tilo Spannagel
ecc897b477
Merge pull request #658 from ykcab/minor-typo
...
Changes in the README.md
7 years ago
ykcab
5d607a706c
Changed you host to 'your host' in line 32
...
Signed-off-by: ykcab <alain.mbuku@pm.me>
7 years ago
Jonas Thelemann
d9ca9e4b08
Rephrase README's "Named Volumes" Paragraph
...
Signed-off-by: Jonas Thelemann <e-mail@jonas-thelemann.de>
7 years ago
Tilo Spannagel
b9ae3256ad
Merge pull request #600 from marceljd/redis-env-vars
...
Set Redis through environment variables
7 years ago
Jay Rogers
a726f805e3
Simple typo fix
...
Signed-off-by: Jay Rogers <jay@521dimensions.com>
7 years ago
marceljd
b3b6def923
On branch redis-env-vars
...
added REDIS_HOST_PORT
Changes to be committed:
modified: .config/redis.config.php
modified: README.md
Signed-off-by: marceljd <support@dihosting.ch>
7 years ago
marceljd
2e481a86ee
Updated ' to ` for better formatting
...
Signed-off-by: marceljd <support@dihosting.ch>
7 years ago
marceljd
a9f458ce9f
Changes to be committed:
...
modified: .config/redis.config.php
modified: .examples/docker-compose/insecure/mariadb-cron-redis/apache/docker-compose.yml
modified: .examples/docker-compose/insecure/mariadb-cron-redis/fpm/docker-compose.yml
modified: .examples/docker-compose/with-nginx-proxy/mariadb-cron-redis/apache/docker-compose.yml
modified: .examples/docker-compose/with-nginx-proxy/mariadb-cron-redis/fpm/docker-compose.yml
modified: 13.0/apache/Dockerfile
modified: 13.0/apache/config/redis.config.php
modified: 13.0/fpm-alpine/Dockerfile
modified: 13.0/fpm-alpine/config/redis.config.php
modified: 13.0/fpm/Dockerfile
modified: 13.0/fpm/config/redis.config.php
modified: 14.0/apache/Dockerfile
modified: 14.0/apache/config/redis.config.php
modified: 14.0/fpm-alpine/Dockerfile
modified: 14.0/fpm-alpine/config/redis.config.php
modified: 14.0/fpm/Dockerfile
modified: 14.0/fpm/config/redis.config.php
modified: 15.0/apache/Dockerfile
modified: 15.0/apache/config/redis.config.php
modified: 15.0/fpm-alpine/Dockerfile
modified: 15.0/fpm-alpine/config/redis.config.php
modified: 15.0/fpm/Dockerfile
modified: 15.0/fpm/config/redis.config.php
modified: README.md
Signed-off-by: marceljd <support@dihosting.ch>
7 years ago
marceljd
ba4c1359b9
set redis environment variables
...
Signed-off-by: marceljd <support@dihosting.ch>
7 years ago
Richard Steinmetz
bd2e1b4107
Add db command to docker-compose example in readme
...
Signed-off-by: Richard Steinmetz <steinmetz.richard@googlemail.com>
7 years ago
Tilo Spannagel
424364e2e1
Merge pull request #515 from SnowMB/add_update_variable
...
Add NEXTCLOUD_UPDATE for containers started with non-default commands
7 years ago
Marc Brückner
f062435135
clarified use of variable
7 years ago
Arthur Schiwon
3f931009c5
add a mechanism to set trusted domains on install
7 years ago
Marc Brückner
396cf35c97
Added documentation to readme
7 years ago
Tilo Spannagel
654ddeae23
Remove trailing whitespaces
8 years ago
Tilo Spannagel
a4a6ee0d37
Switch to new logo
8 years ago
Maeyanie
68947928ae
Grammar fix in README.md
...
Apostrophes are not intended to be used as warnings to the reader that an S is approaching.
8 years ago
Tilo Spannagel
a564a5388a
Use new stack.yml
8 years ago
Tilo Spannagel
3b420c7d9b
Move image name to the end
8 years ago
Yotam
98f308259c
Added recursive flag to chown command
8 years ago
Martin Gerhardy
86012d94c5
Fixed typos
8 years ago