- NGINX 1.26+
- PostgreSQL 17.2+
- PHP 8.4+
- Doctrine
- Maker Bundle
- PHPUnit and Xdebug.
Required requisites:
Docker and Docker Compose can be installed with Docker Desktop app.
- Clone the project:
git clone https://github.com/neimatos/docker-symfony7-lepp-stack.git
- Go to the project's folder
cd docker-symfony7-lepp-stack
- Update and install Composer packages
composer update
- Build and up project with Docker Compose
docker-compose up -d --build
- Open
http://localhostin your browser, you should see the Symfony 7's welcome page.
Build and up:
docker-compose up -d --build
Up only:
docker-compose up -d
Down:
docker-compose down
Rebuild and up:
docker-compose down -v --remove-orphans
docker-compose rm -vsf
docker-compose up -d --build
Init .sql file inside docker/postgres/conf will be executed on container build. Currently, there is docker/postgres/conf/init_test_table.sql file, creating test_table with 3 records for testing purposes. It can be safely deleted.
Postgres database name, user and password defined in .env file.
Connect to PostgreSQL psql terminal:
docker-compose exec postgres psql -U postgres
PHP config located at docker/php/conf/php.ini. You might want to change date.timezone value in php.ini. Default value is America/Fortaleza (GMT-3).
Execute command php -v in the php container:
docker-compose exec php php -v
There is OPCache commented out settings in php.ini as well as loading line in Dockerfile if you need it, by any means. Not recommended for development environment.
There is two test for testing Docker environment:
- PHPUnit self test
- PostgreSQL connection test
Run the tests:
docker-compose exec php vendor/bin/phpunit ./tests
Successfully passed tests output:
OK (2 tests, 2 assertions)
XDebug config located at docker/php/conf/xdebug.ini.
To enable Xdebug at the project build, set INSTALL_XDEBUG variable to true in .env file.
Folders mapped for default Symfony folder structure (assuming local / is project's folder):
| Local | Container | Description |
|---|---|---|
| / | /var/www | Project root |
| /public | /var/www/public | Web server document root |
| /logs/nginx | /var/logs/nginx | NGINX logs |
Ports mapped default:
| Local | Container | Description |
|---|---|---|
| 80 | 80 | NGINX port |
| 5432 | 5432 | PostgreSQL port |
