-
Notifications
You must be signed in to change notification settings - Fork 8
/
wsl-tar-gen.sh
executable file
·64 lines (57 loc) · 1.47 KB
/
wsl-tar-gen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env bash
# Copyright (C) 2022 Vaisakh Murali
# SPDX-License-Identifier: GPL-3.0-only
# Dependency check
if command -v docker > /dev/null 2>&1 ; then
echo "docker found"
docker -v
else
echo "docker not found! Please install docker and run this script again!"
exit
fi
if command -v awk > /dev/null 2>&1 ; then
echo "awk found"
else
echo "awk not found! Please install awk and run this script again!"
exit
fi
# set dir for tars
export TAR_DIR="$PWD/tars"
# Create tar dir
mkdir -p "$TAR_DIR"
# parse desired distro
DISTROS=(
"adelielinux/adelie"
"almalinux:latest"
"almalinux:minimal"
"alpine:latest"
"alpine:edge"
"amazonlinux:2"
"amazonlinux:latest"
"archlinux"
"archlinux:base-devel"
"clearlinux"
"debian"
"debian:stable-slim"
"debian:unstable"
"debian:unstable-slim"
"fedora"
"fedora:rawhide"
"gentoo/stage3:latest"
"gentoo/stage3:systemd"
"kalilinux/kali-rolling"
"opensuse/tumbleweed"
"rockylinux:9"
"rockylinux:9-minimal"
"ubuntu"
"ubuntu:devel"
)
# begin tar generation
for ELEMENT in "${DISTROS[@]}"; do
docker run -t "$ELEMENT" sh -c echo
containerID=$(docker container ls -a | grep -i "$ELEMENT" | awk '{print $1}')
TAR_NAME=$(echo "$ELEMENT" | tr '/' '_')-$(date -u +%d%m%Y%I%M).tar
docker export "$containerID" > "$TAR_DIR"/"$TAR_NAME"
# Remove the docker image to avoid piling up of containers
docker rm "$containerID"
done