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.
24 lines
482 B
24 lines
482 B
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
|
|
build() {
|
|
local n
|
|
|
|
n=debian-1
|
|
vdn-build $n
|
|
vdn-config $n GUEST_SYS "debian/buster"
|
|
vdn-config $n MEMORY "256"
|
|
vdn-config $n MODE "overlay"
|
|
vdn-config $n AUFS_SIZE "2048"
|
|
vdn-config $n HDA "DebianBuster-amd64-2.disk"
|
|
vdn-config $n EXTRA_SERVICES "apache2 haveged containerd docker"
|
|
#vdn-config $n NETWORKS "\$NET_2#10.0.2.15/24"
|
|
vdn-config $n REDIRS "\
|
|
tcp:22:(ssh) \
|
|
tcp:80:(http) \
|
|
"
|
|
}
|
|
|