Skip to content

Commit 249667c

Browse files
Fix compose restart & bump dependencies
1 parent 655b39a commit 249667c

6 files changed

Lines changed: 25 additions & 25 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The app can be started using the following `compose.yml`:
3939
services:
4040
containers-up:
4141
# https://github.com/DigitallyRefined/containers-up/releases
42-
image: ghcr.io/digitallyrefined/containers-up:1.4.11
42+
image: ghcr.io/digitallyrefined/containers-up:1.4.12
4343
restart: unless-stopped
4444
ports:
4545
- 3000:3000
@@ -63,7 +63,7 @@ Optional system wide configuration can be changed by copying `.env.default` to `
6363
services:
6464
containers-up:
6565
# https://github.com/DigitallyRefined/containers-up/releases
66-
image: ghcr.io/digitallyrefined/containers-up:1.4.11
66+
image: ghcr.io/digitallyrefined/containers-up:1.4.12
6767
restart: unless-stopped
6868
volumes:
6969
- ./containers-up/storage:/storage

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.5.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.5.5/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

bun.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
containers-up:
33
# https://github.com/DigitallyRefined/containers-up/releases
4-
image: ghcr.io/digitallyrefined/containers-up:1.4.11
4+
image: ghcr.io/digitallyrefined/containers-up:1.4.12
55
container_name: containers-up
66
restart: unless-stopped
77
volumes:

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "containers-up",
3-
"version": "1.4.11",
3+
"version": "1.4.12",
44
"description": "Containers Up! a web based platform designed to manage and update containers",
55
"author": "DigitallyRefined",
66
"license": "ISC",
@@ -31,8 +31,8 @@
3131
"@radix-ui/react-slot": "^1.3.0",
3232
"@radix-ui/react-toast": "^1.2.20",
3333
"@radix-ui/react-tooltip": "^1.2.13",
34-
"@tanstack/react-query": "^5.101.2",
35-
"@tanstack/react-query-devtools": "^5.101.2",
34+
"@tanstack/react-query": "^5.101.3",
35+
"@tanstack/react-query-devtools": "^5.101.3",
3636
"bun-plugin-tailwind": "^0.1.2",
3737
"class-variance-authority": "^0.7.1",
3838
"clsx": "^2.1.1",
@@ -50,7 +50,7 @@
5050
"zod": "^4.4.3"
5151
},
5252
"devDependencies": {
53-
"@biomejs/biome": "2.5.4",
53+
"@biomejs/biome": "2.5.5",
5454
"@tailwindcss/cli": "^4.3.3",
5555
"@types/bun": "^1.3.14",
5656
"@types/pino": "^7.0.5",

src/backend/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export const startServer = () => {
381381
);
382382
if (composeError) return composeError;
383383

384-
if (data.job.title) {
384+
if (data.job?.title) {
385385
jobDb.upsert({
386386
...data.job,
387387
hostId: selectedHost.id,

0 commit comments

Comments
 (0)