diff --git a/changelog.md b/changelog.md index aa534fd..7b8ddcb 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,7 @@ - Add Cosmos Market - Reforged the DNS CHallenge to be more user friendly. You can select your DNS provider in a list, and it will guide you through the process with the right fields to set (directly in the UI). No more env variables to set! - Fix issue with docker compose timeout healthcheck as string, inverted ports, and supports for uid:gid syntax in user + - Fix for SELinux compatibility ## Version 0.6.1 - 0.6.4 - Workaround for Docker-compose race condition in Debian diff --git a/package.json b/package.json index 86231ec..bcabbe2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cosmos-server", - "version": "0.7.0-unstable11", + "version": "0.7.0-unstable12", "description": "", "main": "test-server.js", "bugs": { diff --git a/readme.md b/readme.md index bd073aa..04a3a6a 100644 --- a/readme.md +++ b/readme.md @@ -132,7 +132,7 @@ Authentication is very hard (how do you check the password match? What encryptio Installation is simple using Docker: ``` -docker run -d -p 80:80 -p 443:443 --name cosmos-server -h cosmos-server --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /:/mnt/host -v /var/lib/cosmos:/config azukaar/cosmos-server:latest +docker run -d -p 80:80 -p 443:443 --privileged --name cosmos-server -h cosmos-server --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /:/mnt/host -v /var/lib/cosmos:/config azukaar/cosmos-server:latest ``` Once installed, simply go to `http://your-server-ip` and follow the instructions of the setup wizard. diff --git a/src/docker/docker.go b/src/docker/docker.go index 3dc4afe..304bace 100644 --- a/src/docker/docker.go +++ b/src/docker/docker.go @@ -605,6 +605,9 @@ func SelfRecreate() error { Name: "cosmos-self-updater-agent", Image: "azukaar/docker-self-updater:" + version, RestartPolicy: "no", + SecurityOpt: []string{ + "label:disable", + }, Environment: []string{ "CONTAINER_NAME=" + containerName, "ACTION=recreate",