├── .env.example ├── .gitignore ├── databases ├── mysql │ ├── Dockerfile │ └── conf.d │ │ └── my.cnf └── redis │ ├── Dockerfile │ └── redis.conf ├── docker-compose.yml ├── logs └── .gitignore ├── readme.md ├── storage └── .gitignore └── web ├── Dockerfile └── init.sh /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/laravel-docker/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /web/src/* 2 | /.env 3 | -------------------------------------------------------------------------------- /databases/mysql/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mysql:5.7 2 | LABEL maintainer="Neo Ighodaro " 3 | -------------------------------------------------------------------------------- /databases/mysql/conf.d/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/laravel-docker/HEAD/databases/mysql/conf.d/my.cnf -------------------------------------------------------------------------------- /databases/redis/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM redis:alpine 2 | LABEL maintainer="Neo Ighodaro " 3 | -------------------------------------------------------------------------------- /databases/redis/redis.conf: -------------------------------------------------------------------------------- 1 | loglevel warning 2 | syslog-enabled yes 3 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/laravel-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/laravel-docker/HEAD/readme.md -------------------------------------------------------------------------------- /storage/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/laravel-docker/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoighodaro/laravel-docker/HEAD/web/init.sh --------------------------------------------------------------------------------