https://github.com/mikesir87/docker-lamp-demo
A demo repo that produces an app using a LAMP stack
https://github.com/mikesir87/docker-lamp-demo
Last synced: about 2 months ago
JSON representation
A demo repo that produces an app using a LAMP stack
- Host: GitHub
- URL: https://github.com/mikesir87/docker-lamp-demo
- Owner: mikesir87
- License: apache-2.0
- Created: 2017-04-05T19:43:36.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2023-06-08T16:25:25.000Z (almost 2 years ago)
- Last Synced: 2025-04-01T15:54:15.429Z (2 months ago)
- Language: PHP
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker LAMP Demo
This repo contains a simple LAMP-stack project used for Docker demos.
## Development
To run the application in development, simply use Docker Compose!
```
docker compose up -d
```You should then be able to open [http://localhost](http://localhost) and see the application! Opening [http://localhost:8080](http://localhost:8080) will give you phpMyAdmin, letting you see what's stored in the database.
When you're done, simply tear everything down with:
```
docker compose down
```