├── .gitignore ├── README.md ├── docker-compose.yml ├── nginx ├── Dockerfile ├── vhost.conf └── vhost2.conf ├── php └── Dockerfile └── src ├── app └── .gitignore └── app2 └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | db-mysql/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsaitam/ambiente-nginx-php7.3-mysql/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsaitam/ambiente-nginx-php7.3-mysql/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsaitam/ambiente-nginx-php7.3-mysql/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsaitam/ambiente-nginx-php7.3-mysql/HEAD/nginx/vhost.conf -------------------------------------------------------------------------------- /nginx/vhost2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsaitam/ambiente-nginx-php7.3-mysql/HEAD/nginx/vhost2.conf -------------------------------------------------------------------------------- /php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmsaitam/ambiente-nginx-php7.3-mysql/HEAD/php/Dockerfile -------------------------------------------------------------------------------- /src/app/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app2/.gitignore: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------