Skip to content
Snippets Groups Projects
docker-compose.dev.yml 438 B
Newer Older
  • Learn to ignore specific revisions
  • version: "3.7"
    
    Rafael László's avatar
    Rafael László committed
    services:
      bodysch-backend-dev:
        container_name: bodysch-backend-dev
        image: registry.kszk.bme.hu/bodysch/backend:dev
        restart: always
    
          - "3030:8000"
    
    Rafael László's avatar
    Rafael László committed
        links:
          - bodysch-mongo-dev
        env_file:
          - .env
        depends_on:
          - bodysch-mongo-dev
      bodysch-mongo-dev:
        container_name: bodysch-mongo-dev
    
        image: mongo
        volumes:
    
    Rafael László's avatar
    Rafael László committed
          - ./data:/data/db
        expose:
    
          - "27017"