load env variables directly from docker compose
This commit is contained in:
parent
5a149ebe26
commit
5245125097
|
@ -3,3 +3,5 @@ node_modules
|
|||
.gitignore
|
||||
.next
|
||||
package-lock.json
|
||||
|
||||
.env
|
|
@ -20,7 +20,9 @@ services:
|
|||
ports:
|
||||
- "8069:3000"
|
||||
|
||||
env_file: .env
|
||||
environment:
|
||||
- ENABLE_REDIS=true
|
||||
- REDIS_URL=redis://redis:6379
|
||||
|
||||
redis:
|
||||
image: redis:alpine
|
||||
|
|
Loading…
Reference in New Issue