You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
499 B
26 lines
499 B
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
build() {
|
|
local n
|
|
|
|
n=docker
|
|
vdn-build $n
|
|
vdn-config $n TYPE "cow"
|
|
vdn-config $n GUEST_SYS "debian/bullseye"
|
|
vdn-config $n MEMORY "4096"
|
|
vdn-config $n HDA "DebianBullseyeDocker.disk"
|
|
vdn-config $n SWAP_SIZE "2048"
|
|
vdn-config $n NETWORKS "NET_G#20.X2.Y2.Z2/8"
|
|
vdn-config $n EXTRA_SERVICES "containerd docker"
|
|
|
|
vdn-config $n REDIRS "\
|
|
tcp:22:(ssh) \
|
|
tcp:80:(http) \
|
|
tcp:443:(https) \
|
|
tcp:8000:(free) \
|
|
"
|
|
}
|
|
|