https://github.com/jordyalkema/docker-laravel
Simple docker container for running Laravel
https://github.com/jordyalkema/docker-laravel
docker-container docker-laravel laravel
Last synced: 4 months ago
JSON representation
Simple docker container for running Laravel
- Host: GitHub
- URL: https://github.com/jordyalkema/docker-laravel
- Owner: JordyAlkema
- License: gpl-3.0
- Created: 2020-01-09T09:50:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-09T13:08:28.000Z (over 5 years ago)
- Last Synced: 2024-12-30T14:24:13.622Z (6 months ago)
- Topics: docker-container, docker-laravel, laravel
- Language: Dockerfile
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Laravel
Easily run Laravel in docker for production and development environments.## Usage
1. Copy the ```Dockerfile``` into the root of the Laravel project.
2. Create a new (or copy an existing) ```.env``` file and name it ```.env.docker```, this is the env file the docker container will use.
3. Build the container using ```docker image build .``` while in the project folder## Thanks to...
[richarvey/nginx-php-fpm](https://github.com/richarvey/nginx-php-fpm) - For the awesome docker container this is based on.