For those who are impatient and not afraid of SSH, you can quickly fix
- First, stop and remove the current container
docker stop gladys && docker rm gladys
- Then recreate the container with this time the missing argument
docker run -d \
--log-opt max-size=10m \
--restart=always \
--privileged \
--network=host \
--name gladys \
-e NODE_ENV=production \
-e SERVER_PORT=80 \
-e TZ=Europe/Paris \
-e SQLITE_FILE_PATH=/var/lib/gladysassistant/gladys-production.db \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /var/lib/gladysassistant:/var/lib/gladysassistant \
-v /dev:/dev \
-v /run/udev:/run/udev:ro \
gladysassistant/gladys:v4
There you go
For others, you will have to wait for 4.2.1 tomorrow ![]()