aboutsummaryrefslogtreecommitdiff
path: root/cluster/prod/app/plume/integration/docker-compose.yml
blob: b88de8a708544ca18e62395b256de7b7d21e4da6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: '3.4'
services:
  plume:
    image: superboum/plume:v1
    env_file:
      - plume.env
    depends_on:
      - consul
      - postgres
    ports:
      - "7878:7878"

  postgres:
    image: postgres:9.6.19
    environment:
      - POSTGRES_DB=plume
      - POSTGRES_USER=plume
      - POSTGRES_PASSWORD=plume

  bottin:
    image: lxpz/bottin_amd64:14
    depends_on:
      - consul
    volumes:
      - ./bottin.json:/config.json

  consul:
    image: consul:1.8.4