mirror of
https://git.koehlerweb.org/frodovdr/guac-install
synced 2025-04-23 12:53:12 +02:00
Compare commits
3 Commits
22e279ce11
...
6f89f7a1d1
Author | SHA1 | Date | |
---|---|---|---|
|
6f89f7a1d1 | ||
|
76e992022a | ||
|
0816002f0c |
@ -4,7 +4,7 @@ I've maintained this script for quite a few years now with the help of the other
|
||||
|
||||
## NOTE: Ubuntu users having issues with RDP have reported the following fix:
|
||||
```
|
||||
sudo add-apt-repository ppa:remmina-ppa-team/freerdp-daily
|
||||
sudo add-apt-repository ppa:remmina-ppa-team/remmina-next
|
||||
sudo apt-get update
|
||||
sudo apt-get install freerdp2-dev freerdp2-x11
|
||||
```
|
||||
|
@ -91,11 +91,11 @@ fi
|
||||
tar -xzf guacamole-auth-jdbc-${GUACVERSION}.tar.gz
|
||||
|
||||
# Start MySQL
|
||||
docker run --restart=always --detach --name=mysql --env="MYSQL_ROOT_PASSWORD=$mysqlrootpassword" --publish 3306:3306 healthcheck/mysql
|
||||
docker run --restart=always --detach --name=mysql --env="MYSQL_ROOT_PASSWORD=$mysqlrootpassword" --publish 3306:3306 healthcheck/mysql --default-authentication-plugin=mysql_native_password
|
||||
|
||||
# Wait for the MySQL Health Check equal "healthy"
|
||||
echo "Waiting for MySQL to be healthy"
|
||||
until [ "`/usr/bin/docker inspect -f {{.State.Health.Status}} mysql`"=="healthy" ]; do
|
||||
until [ "$(/usr/bin/docker inspect -f {{.State.Health.Status}} mysql)" == "healthy" ]; do
|
||||
sleep 0.1;
|
||||
done;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user