added lots of user information

This commit is contained in:
vabene1111
2020-12-31 13:38:16 +01:00
parent f822e03be0
commit 5a7c914fe7
9 changed files with 84 additions and 36 deletions

9
docs/docker/README.md Normal file
View File

@@ -0,0 +1,9 @@
It is possible to install this application using many docker configurations.
:warning: Please note that some examples here are
given because some people want to use them even tough they are not recommended!
Please read the instructions/notes on each example carefully and decide if this is the way for you.
> When in doubt, choose either **nginx-proxy** or **traefik-nginx**

View File

@@ -23,18 +23,18 @@ services:
networks:
- default
nginx_recipes:
image: nginx:mainline-alpine
restart: always
env_file:
- ./.env
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d
- ./staticfiles:/static
- ./mediafiles:/media
networks:
- default
- nginx-proxy
nginx_recipes:
image: nginx:mainline-alpine
restart: always
env_file:
- ./.env
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d
- ./staticfiles:/static
- ./mediafiles:/media
networks:
- default
- nginx-proxy
networks:
default:

View File

@@ -23,18 +23,18 @@ services:
networks:
- default
nginx_recipes:
image: nginx:mainline-alpine
restart: always
env_file:
- ./.env
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d
- ./staticfiles:/static
- ./mediafiles:/media
networks:
- default
- nginx-proxy
nginx_recipes:
image: nginx:mainline-alpine
restart: always
env_file:
- ./.env
volumes:
- ./nginx/conf.d:/etc/nginx/conf.d
- ./staticfiles:/static
- ./mediafiles:/media
networks:
- default
- nginx-proxy
networks:
default:

View File

@@ -1,3 +1,5 @@
> :warning: This guide was contributed by the community and is neither officially supported, nor updated or tested.
Many people appear to host this application on their Synology NAS. The following documentation was provided by
@therealschimmi in [this issue discussion](https://github.com/vabene1111/recipes/issues/98#issuecomment-643062907).

View File

@@ -1,4 +1,4 @@
This is the recommended setup to run django recipes with traefik.
**This is the recommended setup to run django recipes with traefik.**
----

View File

@@ -1,4 +1,4 @@
# Important Information
# :warning: Important Information [NOT RECOMMENDED]
Although this application allows running without any webserver in front of gunicorn it is heavily recommended by almost
everyone **not** to do this. It is hard to find exact explanations and appears not to be a security but only
a performance risk but that is just my personal interpretation.