包含:登录失败锁定、90天密码有效期、30分钟会话超时、 强制改密、登录审计日志、屏幕水印、企业背景图、 备案信息固定底部、favicon、登录页JS修复等全部改动
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
services:
|
||||
www:
|
||||
build:
|
||||
context: ..
|
||||
dockerfile: docker_app/php/Dockerfile
|
||||
ports:
|
||||
- "8080:80"
|
||||
command: apache2ctl -D FOREGROUND
|
||||
volumes:
|
||||
- ../web:/var/www/html/
|
||||
- ./php/config.inc.php:/var/www/html/config.inc.php
|
||||
links:
|
||||
- db
|
||||
networks:
|
||||
- default
|
||||
db:
|
||||
image: mysql:8.0
|
||||
ports:
|
||||
- "3306:3306"
|
||||
command: --default-authentication-plugin=mysql_native_password
|
||||
environment:
|
||||
MYSQL_DATABASE: mrbs
|
||||
MYSQL_USER: mrbs
|
||||
MYSQL_PASSWORD: mrbs
|
||||
MYSQL_ROOT_PASSWORD: mrbs
|
||||
volumes:
|
||||
- ../tables.my.sql:/docker-entrypoint-initdb.d/010-tables.sql
|
||||
- persistent:/var/lib/mysql
|
||||
networks:
|
||||
- default
|
||||
phpmyadmin:
|
||||
image: phpmyadmin
|
||||
links:
|
||||
- db:db
|
||||
ports:
|
||||
- 8888:80
|
||||
volumes:
|
||||
persistent:
|
||||
Reference in New Issue
Block a user