This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
compose_file_path=$1 | |
project_name=$2 #first part before "_" in container-names. for example nc if container name is nc_cloud | |
backup_path=$3 | |
function backup_volume { | |
volume_name=$1 | |
backup_destination=$2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Locale / Keymap | |
d-i debian-installer/locale string en_US.UTF-8 | |
d-i debian-installer/keymap select de-latin1 | |
d-i console-keymaps-at/keymap select de | |
d-i keyboard-configuration/xkb-keymap select nodeadkeys | |
d-i languagechooser/language-name-fb select German | |
d-i countrychooser/country-name select Germany | |
d-i console-setup/layoutcode string de_DE | |
# Netzwerk-Konfiguration | |
d-i netcfg/dhcp_timeout string 30 |