Initial commit with not yet working docker networking
Signed-off-by: TuDatTr <tuan-dat.tran@tudattr.dev>
This commit is contained in:
29
group_vars/all/vars.yml
Normal file
29
group_vars/all/vars.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
#
|
||||
# Essential
|
||||
#
|
||||
user: tudattr
|
||||
timezone: Europe/Berlin
|
||||
local_domain: borg.land
|
||||
|
||||
#
|
||||
# Packages
|
||||
#
|
||||
common_packages:
|
||||
- sudo
|
||||
- git
|
||||
- iperf3
|
||||
- git
|
||||
- tmux
|
||||
- smartmontools
|
||||
|
||||
#
|
||||
# Docker
|
||||
#
|
||||
docker_repo_url: https://download.docker.com/linux
|
||||
docker_apt_gpg_key: "{{ docker_repo_url }}/{{ ansible_distribution | lower }}/gpg"
|
||||
docker_apt_release_channel: stable
|
||||
docker_apt_arch: "{{ 'arm64' if ansible_architecture == 'aarch64' else 'amd64' }}"
|
||||
docker_apt_repository: "deb [arch={{ docker_apt_arch }}] {{ docker_repo_url }}/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} {{ docker_apt_release_channel }}"
|
||||
|
||||
docker_compose_dir: /opt/docker/compose
|
||||
docker_dir: /opt/docker/config
|
||||
Reference in New Issue
Block a user