config_public_alpine.js 558 B

12345678910111213141516171819
  1. // The root filesystem location
  2. export const diskImageUrl = "wss://disks.webvm.io/alpine_20241109.ext2";
  3. // The root filesystem backend type
  4. export const diskImageType = "cloud";
  5. // Print an introduction message about the technology
  6. export const printIntro = false;
  7. // Is a graphical display needed
  8. export const needsDisplay = true;
  9. // Executable full path (Required)
  10. export const cmd = "/sbin/init";
  11. // Arguments, as an array (Required)
  12. export const args = [];
  13. // Optional extra parameters
  14. export const opts = {
  15. // User id
  16. uid: 0,
  17. // Group id
  18. gid: 0
  19. };