Skip to content

Instantly share code, notes, and snippets.

@quocthinhle
Created January 22, 2022 08:09
Show Gist options
  • Save quocthinhle/efd1fb81e77888a189605eeccbc31ef4 to your computer and use it in GitHub Desktop.
Save quocthinhle/efd1fb81e77888a189605eeccbc31ef4 to your computer and use it in GitHub Desktop.
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