Merge pull request #1644 from gloriousDan/develop

Update bind mounts in docker run command to use absolute paths
This commit is contained in:
vabene1111 2022-03-15 11:34:40 +01:00 committed by GitHub
commit 16449cd078
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,8 +14,8 @@ It can be run and accessed on port 80 using:
```shell
docker run -d \
-v ./staticfiles:/opt/recipes/staticfiles \
-v ./mediafiles:/opt/recipes/mediafiles \
-v "$(pwd)"/staticfiles:/opt/recipes/staticfiles \
-v "$(pwd)"/mediafiles:/opt/recipes/mediafiles \
-p 80:8080 \
-e SECRET_KEY=YOUR_SECRET_KEY \
-e DB_ENGINE=django.db.backends.postgresql \