ImgURL Pro容器部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
461 B

version: '3'
services:
imgurl:
image: helloz/imgurl
name: imgurl
volumes:
- ./imgurl:/data/wwwroot/default
ports:
- "880:80"
restart:
always
mysql57:
image: mysql:5.7
name: mysql57
ports:
- "13306:3306"
volumes:
- ./mysql/my.cnf:/etc/mysql/my.cnf
- ./mysql/data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: 95KeVtSp6MBC
TZ: Asia/Shanghai
restart:
always