Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jcavat/docker-lamp
Docker with Apache, MySql, PhpMyAdmin and Php
https://github.com/jcavat/docker-lamp
apache docker docker-compose lamp mariadb mysql php phpmyadmin
Last synced: 28 days ago
JSON representation
Docker with Apache, MySql, PhpMyAdmin and Php
- Host: GitHub
- URL: https://github.com/jcavat/docker-lamp
- Owner: jcavat
- License: unlicense
- Created: 2017-03-13T20:38:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-09-27T14:21:31.000Z (about 2 years ago)
- Last Synced: 2024-09-28T11:04:21.068Z (about 1 month ago)
- Topics: apache, docker, docker-compose, lamp, mariadb, mysql, php, phpmyadmin
- Language: PHP
- Size: 14.6 KB
- Stars: 375
- Watchers: 20
- Forks: 268
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-lamp
Docker example with Apache, MySql 8.0, PhpMyAdmin and Php
- You can use MariaDB 10.1 if you checkout to the tag `mariadb-10.1` - contribution made by [luca-vercelli](https://github.com/luca-vercelli)
- You can use MySql 5.7 if you checkout to the tag `mysql5.7`I use docker-compose as an orchestrator. To run these containers:
```
docker-compose up -d
```Open phpmyadmin at [http://localhost:8000](http://localhost:8000)
Open web browser to look at a simple php example at [http://localhost:8001](http://localhost:8001)Run mysql client:
- `docker-compose exec db mysql -u root -p`
Enjoy !