summaryrefslogtreecommitdiff
path: root/docker/hybrid/docker-compose.yml
blob: 7d07879d0738bb3928d0f4535140b44caba3f71d (plain)
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' # '0' is not allowed

services:

  talerdb:
    build: ./images/postgres
    ports:
      - 8888:5432

  exchange:
    build: ./images/exchange
    depends_on:
      - talerdb
    ports:
      - 5555:80

  merchant:
    build: ./images/merchant
    depends_on:
      - talerdb
    ports:
      - 5556:80

  bank:
    build: ./images/libeufin
    ports:
      - 5557:5000
      - 5558:5001