aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: f163ecdba58af164b99c6eb066e9fb8d930a1cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Build and run which-api with database in container
#
# If you are getting "port already in use" error,
# try changing exposed ports, e.g 27017:27017 -> 27018:27017

version: '3'
services:
  app:
    container_name: which-api
    restart: always
    build: .
    environment:
      - MONGODB_URI=mongodb://db:27017/which
    ports:
      - '3030:3030'
    links:
      - db
  db:
    container_name: mongo
    image: mongo
    ports:
      - '27017:27017'