Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s-shiryaev/docker-php7-symfony
A docker multicontainer with nginx, postgres, redis and a configured symfony project
https://github.com/s-shiryaev/docker-php7-symfony
nginx php7-fpm postgresql redis symfony symfony5-1
Last synced: about 1 month ago
JSON representation
A docker multicontainer with nginx, postgres, redis and a configured symfony project
- Host: GitHub
- URL: https://github.com/s-shiryaev/docker-php7-symfony
- Owner: s-shiryaev
- License: mit
- Created: 2020-07-29T16:35:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T08:20:53.000Z (almost 2 years ago)
- Last Synced: 2024-07-30T20:47:51.973Z (5 months ago)
- Topics: nginx, php7-fpm, postgresql, redis, symfony, symfony5-1
- Language: PHP
- Homepage:
- Size: 423 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Symfony (Nginx, Postgres, Redis, PHP-FPM)
A docker multicontainer with nginx, postgres, redis and a preconfigured symfony project.[![Build Status](https://travis-ci.com/s-shiryaev/docker-php7-symfony.svg?branch=master)](https://travis-ci.com/s-shiryaev/docker-php7-symfony)
## Installation
1. Build/run containers with (with and without detached mode)```
docker-compose build
docker-compose up -d
```2. Composer install
```
docker exec php-fpm composer --no-interaction install
```
## How to Use
* Enter Symfony container
```
docker-compose exec php sh
# OR
docker exec -it php-fpm sh
```* Run whatever you want (E.g. `composer require `)