Last active
March 3, 2020 03:12
-
-
Save thinkmicroservices/66d9adcd999372e7c84345d080afbcd5 to your computer and use it in GitHub Desktop.
AuthenticationService:postgreSQL-rabbitMQ-containers
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
| ############ | |
| # Postgres # | |
| ############ | |
| postgresDB: | |
| image: postgres | |
| restart: always | |
| ports: | |
| - 5432:5432 | |
| environment: | |
| POSTGRES_PASSWORD: docker | |
| networks: | |
| - spring_ri_network | |
| postgresADMIN: | |
| image: dpage/pgadmin4 | |
| ports: | |
| - 1080:80 | |
| environment: | |
| - PGADMIN_DEFAULT_EMAIL=adminr@thinkmicroservices.com | |
| - PGADMIN_DEFAULT_PASSWORD=Password_1 | |
| networks: | |
| - spring_ri_network | |
| ####################### | |
| # RABBIT MQ Messaging # | |
| ####################### | |
| rabbitmq: | |
| image: rabbitmq:3.5.3-management | |
| ports: | |
| - 15672:15672 | |
| - 5672:5672 | |
| networks: | |
| - spring_ri_network | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment