Update to 0.7.0-unstable12

This commit is contained in:
Yann Stepienik
2023-06-15 17:12:16 +01:00
parent ca27d88ec6
commit 7d3b36213b
4 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.7.0-unstable11",
"version": "0.7.0-unstable12",
"description": "",
"main": "test-server.js",
"bugs": {

View File

@@ -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.

View File

@@ -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",