remove installing Prestissimo by default, to prevent the warning
This commit is contained in:
parent
aeb5a6bb63
commit
2df00ecdad
12
README.md
12
README.md
@ -49,7 +49,7 @@ It's like Laravel Homestead but for Docker instead of Vagrant.
|
|||||||
- [Run a Docker Virtual Host](#Run-Docker-Virtual-Host)
|
- [Run a Docker Virtual Host](#Run-Docker-Virtual-Host)
|
||||||
- [Find your Docker IP Address](#Find-Docker-IP-Address)
|
- [Find your Docker IP Address](#Find-Docker-IP-Address)
|
||||||
- [Use custom Domain](#Use-custom-Domain)
|
- [Use custom Domain](#Use-custom-Domain)
|
||||||
- [Optional Features](#Optional-Features)
|
- [Install-Prestissimo](#Install-Prestissimo)
|
||||||
- [Debugging](#debugging)
|
- [Debugging](#debugging)
|
||||||
- [Help & Questions](#Help)
|
- [Help & Questions](#Help)
|
||||||
|
|
||||||
@ -260,6 +260,7 @@ If you need a special support. Contact me, more details in the [Help & Questions
|
|||||||
<a name="Documentation"></a>
|
<a name="Documentation"></a>
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
|
**Note:** this documentation doesn't cover the Docker Beta *(Native Docker on MAC and Windows)*. However, the commands are very similar. We are planning to cover the Docker Beta soon.
|
||||||
|
|
||||||
|
|
||||||
<a name="Docker"></a>
|
<a name="Docker"></a>
|
||||||
@ -824,12 +825,10 @@ server_name laravel.dev;
|
|||||||
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<a name="Optional-Features"></a>
|
<a name="Install-Prestissimo"></a>
|
||||||
### Optional Features
|
### Install Prestissimo
|
||||||
Optional features can be enabled by changing the `.env` file in the Laradock directory.
|
|
||||||
|
|
||||||
#### Prestissimo
|
[Prestissimo](https://github.com/hirak/prestissimo) is a plugin for composer which enables parallel install functionality. You can enable Prestissimo by setting `INSTALL_PRESTISSIMO=true` in the `docker-compose.yml` file.
|
||||||
[Prestissimo](https://github.com/hirak/prestissimo) is a plugin for composer which enables parallel install functionality. You can enable Prestissimo by setting `INSTALL_PRESTISSIMO=true` in the `.env` file.
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<a name="debugging"></a>
|
<a name="debugging"></a>
|
||||||
@ -878,6 +877,7 @@ Additionally, you can contact Mahmoud Zalt (the creator of this project) via a d
|
|||||||
|
|
||||||
**Main Contributors:**
|
**Main Contributors:**
|
||||||
|
|
||||||
|
- [Jack Fletcher](https://github.com/Kauhat)
|
||||||
- [Bo-Yi Wu](https://github.com/appleboy)
|
- [Bo-Yi Wu](https://github.com/appleboy)
|
||||||
- [Amin Mkh](https://github.com/AminMkh)
|
- [Amin Mkh](https://github.com/AminMkh)
|
||||||
- [Matthew Tonkin Dunn](https://github.com/mattythebatty)
|
- [Matthew Tonkin Dunn](https://github.com/mattythebatty)
|
||||||
|
@ -2,26 +2,6 @@ version: '2'
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
### Laravel Application Code Container ######################
|
|
||||||
|
|
||||||
volumes_source:
|
|
||||||
build: ./volumes/application
|
|
||||||
volumes:
|
|
||||||
- ../:/var/www/laravel
|
|
||||||
|
|
||||||
### Databases Data Container ################################
|
|
||||||
|
|
||||||
volumes_data:
|
|
||||||
build: ./volumes/data
|
|
||||||
volumes:
|
|
||||||
- ./data/mysql:/var/lib/mysql
|
|
||||||
- ./data/postgres:/var/lib/postgres
|
|
||||||
- ./data/mariadb:/var/lib/mariadb
|
|
||||||
- ./data/memcached:/var/lib/memcached
|
|
||||||
- ./data/redis:/data
|
|
||||||
- ./data/neo4j:/var/lib/neo4j/data
|
|
||||||
- ./data/mongo:/data/db
|
|
||||||
|
|
||||||
### Nginx Server Container ##################################
|
### Nginx Server Container ##################################
|
||||||
|
|
||||||
nginx:
|
nginx:
|
||||||
@ -156,9 +136,29 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: ./workspace
|
context: ./workspace
|
||||||
args:
|
args:
|
||||||
- INSTALL_PRESTISSIMO=${INSTALL_PRESTISSIMO}
|
- INSTALL_PRESTISSIMO=false
|
||||||
volumes_from:
|
volumes_from:
|
||||||
- volumes_source
|
- volumes_source
|
||||||
tty: true
|
tty: true
|
||||||
|
|
||||||
|
### Laravel Application Code Container ######################
|
||||||
|
|
||||||
|
volumes_source:
|
||||||
|
build: ./volumes/application
|
||||||
|
volumes:
|
||||||
|
- ../:/var/www/laravel
|
||||||
|
|
||||||
|
### Databases Data Container ################################
|
||||||
|
|
||||||
|
volumes_data:
|
||||||
|
build: ./volumes/data
|
||||||
|
volumes:
|
||||||
|
- ./data/mysql:/var/lib/mysql
|
||||||
|
- ./data/postgres:/var/lib/postgres
|
||||||
|
- ./data/mariadb:/var/lib/mariadb
|
||||||
|
- ./data/memcached:/var/lib/memcached
|
||||||
|
- ./data/redis:/data
|
||||||
|
- ./data/neo4j:/var/lib/neo4j/data
|
||||||
|
- ./data/mongo:/data/db
|
||||||
|
|
||||||
### Add more Containers below ###############################
|
### Add more Containers below ###############################
|
||||||
|
Loading…
Reference in New Issue
Block a user