Welcome to Symfony-Company-Check
! This is a simple app built in Symfony using DDD and CQRS.
Docker makes it easy to wrap your applications and services in containers so you can run them anywhere. Our project is already Docker-ready for you!
-
Navigate to the Docker Directory
cd .docker
-
Build and Start the Containers
Note: Ensure Docker is running on your system.
docker-compose up -d
This command will build the containers based on the services defined in
docker-compose.yml
and the respectiveDockerfile
s located in the service directories. -
Check the Running Containers
docker ps
You should see your services running. If you face any issues, logs can be checked using:
docker-compose logs -f [service-name]
-
Stopping the Containers
Once you're done, you can stop the containers by running:
docker-compose down
With Docker, you can ensure the application runs in the same environment regardless of where Docker is running. It simplifies deployment, scaling, and testing.
-
Clone the Repository
-
Navigate into the Directory
cd symfony-company-check
-
Install Dependencies
composer install
-
Run the Service
symfony server:start
That's it! Your GUS data provider should now be running on http://127.0.0.1:8000
.