Created
March 20, 2019 13:04
-
-
Save thib92/0b229d8bff369eb9a9ddb4ef3d33e855 to your computer and use it in GitHub Desktop.
Symfony Messenger Workshop docker-compose.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
sf: | |
image: thib92/sf-messenger-workshop:latest | |
ports: | |
- 8000:8000 | |
volumes: | |
- .:/srv/app | |
depends_on: | |
- rabbitmq | |
rabbitmq: | |
image: rabbitmq:3-management | |
ports: | |
- 5672:5672 | |
- 15672:15672 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment