https://github.com/laraedit/laraedit-docker
Dockerized version of Laravel Homestead
https://github.com/laraedit/laraedit-docker
Last synced: about 1 month ago
JSON representation
Dockerized version of Laravel Homestead
- Host: GitHub
- URL: https://github.com/laraedit/laraedit-docker
- Owner: laraedit
- License: mit
- Created: 2016-02-03T14:29:29.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-05T11:15:50.000Z (over 4 years ago)
- Last Synced: 2024-07-31T18:17:06.241Z (9 months ago)
- Language: Shell
- Size: 66.4 KB
- Stars: 451
- Watchers: 16
- Forks: 81
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-laravel - LaraEdit Docker - Homestead environment in a single Docker container (Development Setup)
README
# laraedit-docker [](https://github.com/laraedit/laraedit-docker/issues) [](https://raw.githubusercontent.com/laraedit/laraedit-docker/master/LICENSE) [](https://github.com/laraedit/laraedit-docker/network) [](https://github.com/laraedit/laraedit-docker/stargazers)
Dockerized version of Laravel Homestead# Documentation
For now you can [check out the wiki](https://github.com/laraedit/laraedit-docker/wiki) for details on using the container. Once the container is stable, I will add more instructions here in the readme.# Build Information
You can find the latest build details on the [Docker Hub](https://hub.docker.com/r/laraedit/laraedit/)# What works
- [x] Nginx 1.8.1
- [x] PHP 7.0
- [x] SQLite
- [x] MySQL 5.7
- [x] Redis
- [x] NodeJS
- [ ] PostgreSQL
- [x] Beanstalkd
- [x] Blackfire
- [x] Bower
- [x] Gulp
- [x] Composer
- [x] Laravel Envoy
- [x] Laravel Installer
- [ ] Lumen Installer# How to use the container
### Kitematic (the easy way)
1. Search for `LaraEdit`
2. Create LaraEdit container
3. Point the `/var/www/html/app` volume to your local application directory.### CLI (the other easy way)
1. Pull in the image
```
docker pull laraedit/laraedit
```
2. Run the container
```
docker run -p 80:80 -v /path/to/your/app:/var/www/html/app laraedit/laraedit
```
**If you want to try the latest unstable release, replace `laraedit/laraedit` with `laraedit/laraedit:dev`**# MySQL Details
- MySQL Username = `homestead`
- MySQL Password = `secret`
- MySQL Database = `homestead`You are free to create more databases and/or users, but these are available to you as soon as you run the container!