mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-22 18:25:47 +08:00

* fix: some minor bugs and make Dockerfile more productive. * fix: make GitHub CI configuration support build image with STANDARD target. * fix: Naming the base stage in multi-stage builds with lowercase letters to support various operating systems. * fix: copy swagger to the image as well.
8 lines
127 B
Bash
8 lines
127 B
Bash
#!/bin/bash
|
|
|
|
service mariadb start
|
|
|
|
mysqladmin -u root password ${MYSQL_ROOT_PASSWORD}
|
|
|
|
exec /app/server --createDatabase=true
|