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!
- Host: GitHub
- URL: https://github.com/inmanturbo/clr-docker-lemp
- Owner: inmanturbo
- License: other
- Created: 2020-10-17T01:31:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-13T13:31:12.000Z (over 5 years ago)
- Last Synced: 2025-07-22T00:34:37.825Z (11 months ago)
- Topics: clearlinux, devops, docker, imagick, laravel, mailparse-extension, mariadb, nginx, php, phpredis, redis, redis-client
- Language: Shell
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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 .. # :-)