mirror of
https://github.com/bewcloud/bewcloud.git
synced 2026-03-11 08:54:49 +00:00
Require .env file for docker compose example
This commit is contained in:
parent
735b14544a
commit
9f4723c13f
1 changed files with 3 additions and 0 deletions
|
|
@ -6,6 +6,9 @@ services:
|
|||
- 127.0.0.1:8000:8000
|
||||
mem_limit: '256m'
|
||||
user: "${UID}:${GID}" # if you run into issues with permissions for the data-files volume below, see other options at https://stackoverflow.com/a/56904335
|
||||
env_file:
|
||||
- path: .env
|
||||
required: true
|
||||
volumes:
|
||||
- ./data-files:/app/data-files
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue