12345678910111213141516171819 |
- version: '3.4'
- services:
- flet-demo:
- image: jianboy/flet-demo:latest
- build:
- context: .
- dockerfile: ./Dockerfile
- ports:
- - 8080:8080
- volumes:
- -$(pwd):/app
- # db:
- # image: mysql:5.6
- # ports:
- # -3306:3306
- # volumes:
- # -{$pwd}/data/mysql:/var/mysql
|