Skip to content

Latest commit

 

History

History
82 lines (68 loc) · 2.68 KB

README.md

File metadata and controls

82 lines (68 loc) · 2.68 KB

Symfony 4 Docker

Minimal Runtime Environment Build Status symfony 4 docker

Table of content

See it working!

Deployed with Travis and Kubernetes

  • Further documentation about deployment will be provied.

Environment architecture

Quick start

$ git clone https://github.com/tulik/symfony-4-docker-runtime-env.git
$ cd symfony-4-docker-runtime-env
$ docker-compose up

Wait for containers to start, then to http://localhost

Video tuturial

Setup Symfony 4 with Docker in 5 minutes

Directory structure

symfony-4-docker-runtime-env
├── documentation
│   └── images
├── h2-proxy
│   └── conf.d
├── helm
│   └── symfony
│       ├── charts
│       └── templates
└── symfony
    ├── bin
    ├── config
    │   ├── packages
    │   │   ├── dev
    │   │   ├── prod
    │   │   └── test
    │   └── routes
    ├── docker
    │   ├── nginx
    │   │   └── conf.d
    │   ├── php
    │   └── varnish
    │       └── conf
    ├── public
    └── src
        ├── Controller
        ├── Entity
        ├── Migrations
        └── Repository


Copyright Note: Substantial portions of the solution was introduced by Kévin Dunglas.