aboutsummaryrefslogtreecommitdiffstats
path: root/extra/docker/clamp/docker-compose.yml
blob: 81cac25cb6aed4aa69054c4bef1d798754401dd7 (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
29
30
31
32
33
34
35
36
37
38
version: '3.1'

services:
  clamp-frontend:
    image: onap/clamp-frontend
    depends_on:
      - clamp-backend
    ports:
      - "2443:2443"
  db:
    image: mariadb:10.4.7
    volumes:
      - "/var/lib/mysql"
      - "../mariadb/conf1:/etc/mysql/conf.d:ro"
      - "../../sql/:/docker-entrypoint-initdb.d:rw"
    environment:
      - MYSQL_ROOT_PASSWORD=strong_pitchou
    ports:
      - "3306:3306"

  clamp-backend:
    image: onap/clamp-backend
    depends_on:
      - db
      - third-party-proxy
    env_file:
      - clamp.env
    ports:
      - "8443:8443"
      
  third-party-proxy:
    image: python:2-slim
    volumes:
      - "../../../src/test/resources/http-cache/example/:/thirdparty:rw"
      - "../../../src/test/resources/http-cache/:/script/:ro"
    ports:
      - "8085:8085"
    command: /bin/sh -c "pip install --no-cache-dir requests &&  pip install --no-cache-dir simplejson && python -u /script/third_party_proxy.py -v true --port 8085 --root /thirdparty --proxyaddress third-party-proxy:8085"