Skip to content
Snippets Groups Projects
docker-compose.yaml 230 B
Newer Older
  • Learn to ignore specific revisions
  • David PETIT's avatar
    David PETIT committed
    version: '3'
    services:
      api:
        restart: always
        build: .
        ports:
    
    David PETIT's avatar
    David PETIT committed
          - '8082:8082'
    
    David PETIT's avatar
    David PETIT committed
        depends_on:
          - mongo
      mongo:
        image: mongo
    
    David PETIT's avatar
    David PETIT committed
        ports:
    
    David PETIT's avatar
    David PETIT committed
          - '27017:27017'
    
    David PETIT's avatar
    David PETIT committed
        volumes: 
          - './mongodbdata:/data/db'