File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed
Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ You have complete control over your data and dashboard configuration.
2727This only requires docker to be installed. [ Install Docker] ( https://docs.docker.com/engine/install/ ) . Run using ` docker compose `
2828``` yaml
2929---
30+ ---
3031services :
3132 lab-dash :
3233 container_name : lab-dash
@@ -40,6 +41,7 @@ services:
4041 - /sys:/sys:ro
4142 - /docker/lab-dash/config:/config
4243 - /docker/lab-dash/uploads:/app/public/uploads
44+ - /var/run/docker.sock:/var/run/docker.sock
4345 restart : unless-stopped
4446 labels :
4547 - " com.centurylinklabs.watchtower.enable=true"
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ services:
1212 - /sys:/sys:ro
1313 - /docker/lab-dash/config:/config
1414 - /docker/lab-dash/uploads:/app/public/uploads
15- - /var/run/docker.sock:/var/run/docker.sock:ro
15+ - /var/run/docker.sock:/var/run/docker.sock
1616 restart : unless-stopped
1717 labels :
1818 - " com.centurylinklabs.watchtower.enable=true"
Original file line number Diff line number Diff line change 11{
22 "name" : " lab-dash-frontend" ,
3- "version" : " 1.0.10 " ,
3+ "version" : " 1.0.11 " ,
44 "private" : true ,
55 "scripts" : {
66 "dev" : " vite --host" ,
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export const AppContextProvider = ({ children }: Props) => {
4949 await checkForAppUpdates ( ) ;
5050
5151 // Set interval to check every 6 hours (6 * 60 * 60 * 1000 ms)
52- const intervalId = setInterval ( checkForAppUpdates , 6 * 60 * 60 * 1000 ) ;
52+ const intervalId = setInterval ( checkForAppUpdates , 60 * 60 * 1000 ) ;
5353
5454 // Clear interval on component unmount
5555 return ( ) => clearInterval ( intervalId ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " lab-dash" ,
3- "version" : " 1.0.10 " ,
3+ "version" : " 1.0.11 " ,
44 "description" : " This is an open-source user interface designed to manage your server and homelab" ,
55 "main" : " index.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments