mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2024-11-26 15:32:05 +00:00
b9fd8f916b
* update IoT APP store demo * update IoT app store apps * update IoT cloud demo document * [Cloud demo] mount app store between two dockers * [Cloud demo] update restart policy * [Cloud demo] update help page * [Cloud demo] update online demo address
22 lines
402 B
YAML
22 lines
402 B
YAML
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: |