mirror of
https://github.com/azukaar/Cosmos-Server.git
synced 2026-01-06 04:09:53 -06:00
Update to 0.7.0-unstable12
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cosmos-server",
|
||||
"version": "0.7.0-unstable11",
|
||||
"version": "0.7.0-unstable12",
|
||||
"description": "",
|
||||
"main": "test-server.js",
|
||||
"bugs": {
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user