awesome-compose/wasmedge-mysql-nginx/compose.yml
Michael Yuan 624a3709ca My apologies. Need to correct the syntax for the Nginx port 8090.
Signed-off-by: Michael Yuan <michael@secondstate.io>
2022-12-12 11:27:45 +00:00

26 lines
513 B
YAML

services:
frontend:
image: nginx:alpine
ports:
- 8090:80
volumes:
- ./frontend:/usr/share/nginx/html
backend:
image: demo-microservice
platform: wasi/wasm32
build:
context: backend/
ports:
- 8080:8080
environment:
DATABASE_URL: mysql://root:whalehello@db:3306/mysql
RUST_BACKTRACE: full
restart: unless-stopped
runtime: io.containerd.wasmedge.v1
db:
image: mariadb:10.9
environment:
MYSQL_ROOT_PASSWORD: whalehello