Update docs and template env

This commit is contained in:
Antoine Bertin 2021-04-28 14:05:28 +02:00
commit d310180d8c
No known key found for this signature in database
GPG key ID: 09851B52754E2327
2 changed files with 2 additions and 4 deletions

View file

@ -25,7 +25,6 @@ Deployment with the Docker CLI can be done with `docker run` and specify the dat
```shell ```shell
docker run \ docker run \
-e DB_URL='sqlite:///mealie.db' \
-p 9925:80 \ -p 9925:80 \
-v `pwd`:'/app/data/' \ -v `pwd`:'/app/data/' \
hkotel/mealie:latest hkotel/mealie:latest
@ -50,7 +49,6 @@ services:
ports: ports:
- 9925:80 - 9925:80
environment: environment:
DB_URL: sqlite:///mealie.db
TZ: America/Anchorage TZ: America/Anchorage
volumes: volumes:
- ./mealie/data/:/app/data - ./mealie/data/:/app/data

View file

@ -15,7 +15,7 @@ API_PORT=9000
API_DOCS=True API_DOCS=True
# Sets the Database URL to use. See https://docs.sqlalchemy.org/en/14/core/engines.html for options. # Sets the Database URL to use. See https://docs.sqlalchemy.org/en/14/core/engines.html for options.
DB_URL=sqlite:///mealie.db DB_URL=
# Sets the token expiration time in hours. # Sets the token expiration time in hours.
TOKEN_TIME=24 TOKEN_TIME=24