v0.20-dev changes
This commit is contained in:
parent
093b27d016
commit
5b8157a7fe
4 changed files with 8 additions and 11 deletions
|
@ -12,10 +12,12 @@
|
|||
* Container graphs are significantly more efficent and no longer use localStorage.
|
||||
* Made dark mode the default theme.
|
||||
* Created intervals to allow application to idle or scale with more users.
|
||||
* Pages for images, volumes, and networks (non-functional at the moment). :new:
|
||||
* Pages for images, volumes, and networks. :new:
|
||||
* Localized fonts.
|
||||
* CORS Support
|
||||
* Testing with Mocha and Supertest
|
||||
* CORS.
|
||||
* Testing with Mocha and Supertest.
|
||||
* Created Portal page. :new:
|
||||
|
||||
|
||||
## <del>v0.09 (dev)</del> dead. (It had so many problems that I essentially rewrote everything)
|
||||
* Added authentication middleware to router.
|
||||
|
|
|
@ -33,7 +33,6 @@ Alpha v0.20 ( :fire: Experimental :fire: )
|
|||
* [x] Templates.json maintains compatability with Portainer, allowing you to use the template without needing to use DweebUI.
|
||||
* [x] Automatically persists data in docker volumes if bind mount isn't used.
|
||||
* [ ] Preset variables (planned).
|
||||
* [ ] Proxy manager for Caddy (Disabled).
|
||||
|
||||
|
||||
## Setup
|
||||
|
@ -44,9 +43,7 @@ version: "3.9"
|
|||
services:
|
||||
dweebui:
|
||||
container_name: dweebui
|
||||
# image: lllllllillllllillll/dweebui:v0.20
|
||||
build:
|
||||
context: .
|
||||
image: lllllllillllllillll/dweebui:v0.20-dev
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 8000
|
||||
|
|
|
@ -2,9 +2,7 @@ version: "3.9"
|
|||
services:
|
||||
dweebui:
|
||||
container_name: dweebui
|
||||
# image: lllllllillllllillll/dweebui:v0.20
|
||||
build:
|
||||
context: .
|
||||
image: lllllllillllllillll/dweebui:v0.20-dev
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
PORT: 8000
|
||||
|
|
|
@ -23,7 +23,7 @@ export const Uninstall = async (req, res) => {
|
|||
user: req.session.user,
|
||||
email: null,
|
||||
event: "App Removal",
|
||||
message: `${service_name} uninstalled successfully}`,
|
||||
message: `${service_name} uninstalled successfully`,
|
||||
ip: req.socket.remoteAddress
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue