https://github.com/petermann/docker-lamp
Docker with Apache, MariaDB 10.3.18, phpMyAdmin and Php 7.4
https://github.com/petermann/docker-lamp
docker docker-compose mariadb php7 phpmyadmin
Last synced: 3 months ago
JSON representation
Docker with Apache, MariaDB 10.3.18, phpMyAdmin and Php 7.4
- Host: GitHub
- URL: https://github.com/petermann/docker-lamp
- Owner: petermann
- License: unlicense
- Created: 2021-02-18T00:30:32.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-18T00:08:18.000Z (about 4 years ago)
- Last Synced: 2025-01-19T00:05:03.003Z (5 months ago)
- Topics: docker, docker-compose, mariadb, php7, phpmyadmin
- Language: Dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-lamp
Docker with Apache, MariaDB 10.3.18, phpMyAdmin and Php 7.4
I use docker-compose as an orchestrator. To run these containers:
```
docker-compose up -d
```Open phpMyAdmin at [http://localhost:3001](http://localhost:3001)
Open web browser to look at a simple php example at [http://localhost:3000](http://localhost:3000)Run mysql client:
- `docker-compose exec db mysql -u root -p`
Enjoy !