This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/test-tools/IoT-APP-Store-Demo/docker-compose.yml

22 lines
402 B
YAML
Raw Permalink Normal View History

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: