Rename the env-file
This commit is contained in:
parent
f1906b03cd
commit
f734303a26
3 changed files with 8 additions and 2 deletions
|
@ -3,7 +3,7 @@ version: '3'
|
|||
services:
|
||||
silverstripe:
|
||||
image: manuth/silverstripe-dev
|
||||
env_file: .env
|
||||
env_file: devcontainer.env
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
|
@ -11,6 +11,6 @@ services:
|
|||
- ../test/website:/var/www/html
|
||||
db:
|
||||
image: mysql:5
|
||||
env_file: .env
|
||||
env_file: devcontainer.env
|
||||
volumes:
|
||||
- ./mysql-data:/var/lib/mysql
|
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -57,6 +57,9 @@ typings/
|
|||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
|
||||
|
@ -83,3 +86,6 @@ vendor/
|
|||
|
||||
# Build files
|
||||
/javascript/
|
||||
/css/
|
||||
/templates/
|
||||
/assets/
|
||||
|
|
Loading…
Reference in a new issue