https://github.com/mah-shamim/larahits-docker
Dockerized version of Laravel Homestead
https://github.com/mah-shamim/larahits-docker
Last synced: 25 days ago
JSON representation
Dockerized version of Laravel Homestead
- Host: GitHub
- URL: https://github.com/mah-shamim/larahits-docker
- Owner: mah-shamim
- License: mit
- Created: 2019-11-18T17:54:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-19T09:04:26.000Z (over 5 years ago)
- Last Synced: 2025-02-12T17:53:30.925Z (3 months ago)
- Language: Dockerfile
- Size: 16.6 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# larahits-docker [](https://github.com/mah-shamim/larahits-docker/issues) [](https://raw.githubusercontent.com/mah-shamim/larahits-docker/master/LICENSE) [](https://github.com/mah-shamim/larahits-docker/network) [](https://github.com/mah-shamim/larahits-docker/stargazers)
Dockerized version of Laravel Homestead# Documentation
For now you can [check out the wiki](https://github.com/mah-shamim/larahits-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/mahshamim/larahits/)# 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 `LaraHITS`
2. Create LaraHITS 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 mahshamim/larahits
```
2. Run the container
```
docker run -p 80:80 -v /path/to/your/app:/var/www/html/app mahshamim/larahits
```
**If you want to try the latest unstable release, replace `mahshamim/larahits` with `mahshamim/larahits: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!