Created
          February 23, 2018 21:17 
        
      - 
      
 - 
        
Save dmitriid/6e1026ad85b9cc0c56268038c8064749 to your computer and use it in GitHub Desktop.  
  
    
      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' | |
| networks: | |
| gaia: | |
| driver: bridge | |
| services: | |
| # gaia-postgres: | |
| # container_name: gaia-postgres | |
| # image: postgres:latest | |
| # restart: always | |
| # volumes: | |
| # - ./db/postgres:/db | |
| # ports: | |
| # - 5432:5432 | |
| # environment: | |
| # POSTGRES_PASSWORD: example | |
| # PGDATA: /db | |
| # POSTGRES_DB: gaia | |
| # | |
| # networks: | |
| # - gaia | |
| gaia-neo4j: | |
| container_name: gaia-neo4j | |
| image: neo4j:latest | |
| ports: | |
| - 7474:7474 | |
| - 7687:7687 | |
| volumes: | |
| - ./db/neo4j:/data | |
| - ./config/db:/conf | |
| environment: | |
| NEO4J_AUTH: none | |
| networks: | |
| - gaia | |
| gaia-nginx: | |
| container_name: gaia-nginx | |
| image: nginx:latest | |
| volumes: | |
| - ./static/dist:/static:ro | |
| - ./config/nginx:/etc/nginx:ro | |
| ports: | |
| - 8000:80 | |
| networks: | |
| - gaia | |
| gaia: | |
| container_name: gaia | |
| image: openjdk:8-jdk-alpine | |
| depends_on: | |
| # - gaia-postgres | |
| - gaia-nginx | |
| - gaia-neo4j | |
| ports: | |
| - 8100:8080 | |
| volumes: | |
| - .:/src | |
| - ~/.gradle:/root/.gradle | |
| working_dir: /src | |
| command: './gradlew bootRun' | |
| networks: | |
| - gaia | |
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
neo4j.conf
For what it's worth, I've tried various combinations of
gaiainstead of0.0.0.0