Download the PHP package egobude/docker-neos-template without Composer

On this page you can find all versions of the php package egobude/docker-neos-template. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package docker-neos-template

Docker based development setup

Template for a docker based development setup.

Requirements/Links

Development stack

Image Version OS
Nginx 1.11 Alpine
PHP-FPM 7.1 Alpine
Redis 3.2 Alpine
MariaDB 10.1 Debian Jessie

Usage

Clone the repository

$ git clone https://github.com/egobude/docker-project-template.git
$ cd docker-project-template

Create a .env file

Create a .env file from .env.dist and edit it with your own config

$ cp .env.dist .env

Build the containers

$ docker-compose build

Install your project

Install a Neos base distribution

$ composer create-project neos/neos-base-distribution Data 

Install a Flow base distribution

$ composer create-project neos/flow-base-distribution Data

Start your development stack

$ docker-compose up -d   

You can reach your project under http://<YOUR_IP_ADRESS:1234

Stop and remove the containers

$ docker-compose down

If changes have been made to the setup, rebuild the containers

$ docker-compose up -d --build --force-recreate

Tips

Whenever you make changes to the files located under /Docker you have to rebuild the images. Otherwise the changes have no effect!

How to execute a custom shell script on start up?

To execute a custom shell script on start up place one or more *.sh files into the /docker-entrypoints folder. This feature is available for the php-fpm and nginx image. The files are loaded alphabetically.

How to change the port?

If you want a different port than 1234 you can edit the environment variable NGINX_PORT in the .env file.

How to change the document root?

To change the document root just edit the environment variable NGINX_DOCUMENT_ROOT in the .env file.


All versions of docker-neos-template with dependencies

PHP Build Version
Package Version
Requires neos/neos Version ~3.0.0
neos/nodetypes Version ~3.0.0
neos/site-kickstarter Version ~3.0.0
neos/seo Version ~2.0
neos/setup Version ~4.0
neos/redirecthandler-neosadapter Version ~2.0
neos/redirecthandler-databasestorage Version ~2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package egobude/docker-neos-template contains the following files

Loading the files please wait ....