Skip to content

Latest commit

 

History

History
97 lines (64 loc) · 2.58 KB

README.md

File metadata and controls

97 lines (64 loc) · 2.58 KB

alt text

The enhavo CMS is a open source PHP project on top of the fullstack Symfony framework and uses awesome Sylius components to serve a very flexible software, that can handle most of complex data structure with a clean and usability interface.

enhavo-app

The goal of enhavo/enhavo-app image ist to easy deploy enhavo applications with it. So we provide some images that fit to your enhavo project. At least you need enhavo version >=0.7 to run this images without additional config.

Read more documentation for usage

Available versions:

  • 7.2-fpm-latest 7.2-fpm-0.2 7.2-fpm-0.1
  • 7.2-apache-latest 7.2-apache-0.2 7.2-apache-0.1
  • 7.2-nginx-latest 7.2-nginx-0.2 7.2-nginx-0.1
  • 7.3-fpm-latest 7.3-fpm-0.2 7.3-fpm-0.1
  • 7.3-apache-latest 7.3-apache-0.2 7.3-apache-0.1
  • 7.3-nginx-latest 7.3-nginx-0.2 7.3-nginx-0.1
  • 7.4-fpm-latest 7.4-fpm-0.2 7.4-fpm-0.1
  • 7.4-apache-latest 7.4-apache-0.2 7.4-apache-0.1
  • 7.4-nginx-latest 7.4-nginx-0.2 7.4-nginx-0.1

Usage

Run the image with docker run command

$ docker run -dit -p 8000:80 --name enhavo-app enhavo/enhavo-app:7.2-apache-latest

On port 8000 you should see the php info page.

The document root is under /var/www/current/public

To run your app inside the container you need to mount your project directory

-v /var/www/current:/path/to/project/dir

If you use capistrano you can mount your deploy directory

-v /var/www:/path/to/capistrano/deploy

Also SSH for deployment is supported by the image, just use the port option to expose the port

-p 2200:22

Custom configurations

If the docker image don't fit to your needs, than just extend it. Create your custom Dockerfile. You can use apt-get to install missing libraries.

# Dockerfile
FROM enhavo/enhavo-app:7.2-apache-latest

COPY /path/to/your/php.ini /etc/php/7.2/fpm/php.ini
RUN apt-get -y install php7.2-ldap

Now just build your image and store it under your custom name

$ docker build -t your_company/custom_name:latest .

And run your custom image

$ docker run -dit -p 8000:80 --name enhavo-app your_company/custom_name:latest

Start with supervisor

$ docker run -dit -p 8000:80 --env SUPERVISOR=true --name enhavo-app enhavo/enhavo-app:latest

Add your supervisor configs to /etc/supervisor/conf.d

Contribution

Feel free to contribute just add a star this project or open a task or pull request.

MIT License

This software is free to use with MIT License