Created
January 22, 2022 08:09
-
-
Save quocthinhle/efd1fb81e77888a189605eeccbc31ef4 to your computer and use it in GitHub Desktop.
This file contains 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.8' | |
services: | |
neo4j-service: | |
image: neo4j | |
restart: always | |
environment: | |
- NEO4J_AUTH=neo4j/neo4j1 | |
container_name: neo4j-container | |
ports: | |
- "7474:7474" | |
- "7687:7687" | |
rabbitmq-service: | |
image: rabbitmq | |
container_name: rabbitmq-container | |
restart: always | |
ports: | |
- "5672:5672" | |
- "15672:15672" | |
graph-service: | |
build: | |
context: . | |
dockerfile: ./dockerfile | |
depends_on: | |
- neo4j-service | |
- rabbitmq-service | |
ports: | |
- "3000:3000" | |
environment: | |
- name=value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment