Skip to content

Commit 6c7c0c0

Browse files
committed
place in database for root image for project
1 parent 008d2ea commit 6c7c0c0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/packages/util/db-schema/projects.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ Table({
9393
pay_as_you_go_quotas: null,
9494
snapshots: null,
9595
backups: null,
96+
rootfs_image: null,
9697
},
9798
},
9899
set: {
@@ -110,6 +111,7 @@ Table({
110111
},
111112
action_request: true, // used to request that an action be performed, e.g., "save"; handled by before_change
112113
compute_image: true,
114+
rootfs_image: true,
113115
site_license: true,
114116
env: true,
115117
sandbox: true,
@@ -302,6 +304,10 @@ Table({
302304
type: "string",
303305
desc: "Specify the name of the underlying (kucalc) compute image.",
304306
},
307+
rootfs_image: {
308+
type: "string",
309+
desc: "The root filesystem image for this project. This can be an arbitrary Docker image. Prefix images from Dockerhub with docker.io/.",
310+
},
305311
addons: {
306312
type: "map",
307313
desc: "Configure (kucalc specific) addons for projects. (e.g. academic software, license keys, ...)",

0 commit comments

Comments
 (0)