All Projects β†’ j1cs β†’ docker-lamp

j1cs / docker-lamp

Licence: MIT license
Alpine docker with lamp (php7)

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to docker-lamp

docker-dev
A local Docker Environment for building PHP applications πŸ”¨
Stars: ✭ 97 (+130.95%)
Mutual labels:  lamp, lamp-server
demet
Simple and useful LAMP & LEMP and more stack environments to use on Docker.
Stars: ✭ 76 (+80.95%)
Mutual labels:  lamp, lamp-stack
Devilbox
A modern Docker LAMP stack and MEAN stack for local development
Stars: ✭ 3,598 (+8466.67%)
Mutual labels:  lamp, lamp-stack
headless-chrome-alpine
A Docker container running headless Chrome
Stars: ✭ 26 (-38.1%)
Mutual labels:  alpine-linux, alpine-image
alpine-qbittorrent-openvpn
qBittorrent docker container with OpenVPN client running as unprivileged user on alpine linux
Stars: ✭ 230 (+447.62%)
Mutual labels:  alpine-linux, alpine-image
docker-geoserver
A basic docker geoserver image with JAI and marlin renderer running on tomcat
Stars: ✭ 17 (-59.52%)
Mutual labels:  alpine-linux, alpine-image
index
A PEP 503-compliant Python package index specifically providing wheels built for Alpine Linux
Stars: ✭ 26 (-38.1%)
Mutual labels:  alpine-linux
piu
Cross platform package manager wrapper
Stars: ✭ 33 (-21.43%)
Mutual labels:  alpine-linux
docker-healthchecks
Healthchecks Docker image
Stars: ✭ 17 (-59.52%)
Mutual labels:  alpine-linux
alpine-php-fpm
Lightweight and optimised PHP-FPM (PHP 7.4, 8.0, 8.1) Docker images with essential extensions on top of latest Alpine Linux.
Stars: ✭ 53 (+26.19%)
Mutual labels:  alpine-linux
tutorial lamp virtualbox
Tutorial para instalação da VirtualBox, Linux, Apache, MySQL e PHP.
Stars: ✭ 31 (-26.19%)
Mutual labels:  lamp
alpinist
Automatic Alpine Linux Package (apk) Repository Generation using AWS Lambda, S3 & SSM Parameter Store
Stars: ✭ 45 (+7.14%)
Mutual labels:  alpine-linux
docker-alpine-wkhtmltopdf
wkhtmltopdf alpine docker container with headless qt patches
Stars: ✭ 150 (+257.14%)
Mutual labels:  alpine-image
awall
[MIRROR] Alpine firewall configuration tool
Stars: ✭ 37 (-11.9%)
Mutual labels:  alpine-linux
alpine-desktop
No description or website provided.
Stars: ✭ 13 (-69.05%)
Mutual labels:  alpine-linux
alpine-prestashop
Prestashop running on Alpine Linux [Docker]
Stars: ✭ 13 (-69.05%)
Mutual labels:  alpine-linux
docker-pure-ftpd
Pure-FTPd Docker image based on Alpine Linux with MySQL, PostgreSQL and LDAP support
Stars: ✭ 36 (-14.29%)
Mutual labels:  alpine-linux
lnmp-docker
Docker for LNMP ( Alpine Linux + PHP7 + Nginx+ Supervisor + Crontab ) εΌ€ε‘ηŽ―ε’ƒι•œεƒ
Stars: ✭ 23 (-45.24%)
Mutual labels:  alpine-linux
alpine-conf
[MIRROR] Alpine configuration management scripts
Stars: ✭ 38 (-9.52%)
Mutual labels:  alpine-linux
alpine-php-wordpress
Wordpress running on Alpine Linux [Docker]
Stars: ✭ 30 (-28.57%)
Mutual labels:  alpine-linux

Docker with LAMP stack based on Alpine Linux

This docker contain a LAMP stack installed from scratch

Installation

Grab from docker hub

docker run -d -v /path/to/project:/var/www/localhost/htdocs/ -v /path/to/mysql/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=password -p 80:80 -p 3306:3306 --name lamp j1cs/alpine-lamp

Run you own image

git clone https://github.com/j1cs/alpine-lamp && cd alpine-lamp/

Build the image

docker build -t $USER/alpine-lamp .

Run it

docker run -d -v /path/to/project:/var/www/localhost/htdocs/ -e MYSQL_ROOT_PASSWORD=password -p 80:80 -p 3306:3306 --name lamp $USER/alpine-lamp

Connect to MariaDB

To use this you need to install mysql/mariadb cli client

mysql -uroot -ppassword -h 127.0.0.1

PhpMyAdmin

If you want to use phpMyAdmin use the branch called: phpmyadmin-feature

Troubleshooting

Forbidden error 403

sudo chmod -Rf 755 /path/to/project

Error activating InnoDB

If you get errors about activating InnoDB and you are on Windows or Mac, you may be encountering this issue with using host-mapped volumes for MariaDB. Work-around is to use a named volume (persistent but not mapped), or add/overwrite mysql config before entry.

Missing libs

Please let me know or create a pull request

Repos

https://hub.docker.com/r/j1cs/alpine-lamp
https://github.com/j1cs/alpine-lamp

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].