This is an empty Symfony setup with Docker for anyone wanting to develop a Symfony 6.3 application from scratch.
These instructions will help you set up a local development environment for your Symfony application.
- Docker
- Docker Compose
- Git
-
Clone this repository to your local machine:
git clone https://github.com/sorbaugh/symfony63-docker-starter.git cd symfony63-docker-starter
-
Build and start the Docker containers:
docker-compose up -d
-
Install Symfony dependencies:
docker-compose exec php_symfony63_app composer install
-
Access your Symfony application in a web browser:
- Symfony: http://localhost:9000
- phpMyAdmin: http://localhost:8080
Feel free to contribute to this starter template. If you have improvements or suggestions, please create a pull request.