summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/test-tools/IoT-APP-Store-Demo/docker-compose.yml
blob: 331d064cdc56e1cb3236463dfb6f5eebded19824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: '2.0'

services:
  web_portal:
    build: ./wasm_django
    network_mode: "host"
    depends_on:
      - 'device_server'
    restart: always
    volumes:
      - store:/app/static/upload/
  device_server:
    build:
      context: ./wasm_django
      dockerfile: ./server/Dockerfile
    network_mode: "host"
    restart: always
    volumes:
      - store:/app/static/upload/

volumes:
  store: