An open API service indexing awesome lists of open source software.

https://github.com/inmanturbo/clr-docker-lemp

Clear Linux Docker Environment for Nginx Mariadb PHP and Redis Development. With php-extras bundle, and PHPRedis, and redis server!
https://github.com/inmanturbo/clr-docker-lemp

clearlinux devops docker imagick laravel mailparse-extension mariadb nginx php phpredis redis redis-client

Last synced: about 2 months ago
JSON representation

Clear Linux Docker Environment for Nginx Mariadb PHP and Redis Development. With php-extras bundle, and PHPRedis, and redis server!

Awesome Lists containing this project

README

          

# Clear Linux Docker LEMP Stack
- Rolling Release with latest versions of Mariadb, Nginx and PHP
- PHP Extras Bundle
- everything needed for modern frameworks like laravel
- also includes imagick, mailparse, redis, and zmq
- escape dependency hell with bundles!

### Add development stack to existing laravel project:
```
wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.env.example \
&& wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/Dockerfile \
&& wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/docker-compose.yaml \
&& wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/laravel.conf.example \
&& wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/mariadb.env.example \
&& wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/php.ini.example \
&& mkdir -p .local/{etc,home,mnt} \
&& mkdir -p .local/usr/bin \
&& mkdir -p .local/var/{backups,public,seeds} \
&& mkdir -p .local/var/lib/mysql \
&& mkdir -p .local/var/log/nginx \
&& \
for dir in etc home mnt; \
do \
cd .local/${dir}; \
wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore; \
cd .. ; cd ..; \
done \
&& \
for dir in backups public seeds; \
do \
cd .local/var/${dir}; \
wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore; \
cd ..; cd ..; cd ..; \
done \
&& \
cd .local/var/lib/mysql \
&& wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore \
&& cd ../../../usr/bin \
&& wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore \
&& cd ../../var/log/nginx \
&& wget https://raw.githubusercontent.com/inmanturbo/clr-docker-lemp/master/.local/etc/.gitignore \
&& cd .. \
&& cd .. \
&& cd .. \
&& cd .. # :-)