Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docker/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Variables for compose.yml files. Not available in the app.

STACK_NAME=app

# Development
Expand Down
3 changes: 3 additions & 0 deletions docker/dev/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# App dev environment.
# Note that variables are available in the app only, not in compose.yml.

APP_ENV=dev
APP_DEBUG=true
SERVER_NAME=:80
Expand Down
3 changes: 3 additions & 0 deletions docker/prod/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# App prod environment.
# Note that variables are available in the app only, not in compose.yml.

APP_ENV=prod
APP_DEBUG=false
SERVER_NAME=:80
3 changes: 3 additions & 0 deletions docker/test/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# App test environment.
# Note that variables are available in the app only, not in compose.yml.

APP_ENV=test
APP_DEBUG=false
APP_C3=true
Expand Down