From aa11fd9da5ac97573388619884930cc3aaf6638a Mon Sep 17 00:00:00 2001 From: Noel Palo Date: Fri, 10 Sep 2021 03:49:06 +0800 Subject: [PATCH] feature/DLT-23-create-new-env-file - Create new env file for the command --- docker/environments/config.env | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docker/environments/config.env diff --git a/docker/environments/config.env b/docker/environments/config.env new file mode 100644 index 0000000..414c8bb --- /dev/null +++ b/docker/environments/config.env @@ -0,0 +1,23 @@ +# +# Docker Environment - Local +#============================ + +# ENVIROMENT +SYS_ENV=local + +# DIRECTORIES / VOLUMES / PATHS +PATH_PROJECT_SOURCE=../src +PATH_NGINX=./containers/nginx +PATH_NGINX_CONFIGS=${PATH_NGINX}/conf.d/default.conf +PATH_ENV_CONFIGS=./environments +PATH_DATABASE=./volumes/mysql + +# DATABASE +DB_DRIVER=mysql +DB_VERSION=5.7.22 +DB_PORT=3306 +DB_NAME=db_docker_laravel +DB_USERNAME=dbUserDev +DB_PASSWORD=dbUserDev123 +DB_PASSWORD_ROOT=dbUserRoot123 +DB_VOLUME=${PATH_DATABASE}/${DB_DRIVER}_${DB_VERSION} \ No newline at end of file