index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2021-04-29 07:14:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 07:14:34 -0400 |
commit | 5cf0419073699ef476d21feacb50f06cf96e4f94 (patch) | |
tree | b3ca17615b9112b5a29bb214020056b3f9e7163c /profiles/applications | |
parent | aa0f4327260ab39077999859c593ed6d5c12822c (diff) |
-rw-r--r-- | profiles/applications/docker.py | 9 |
diff --git a/profiles/applications/docker.py b/profiles/applications/docker.py new file mode 100644 index 00000000..afa3f8fb --- /dev/null +++ b/profiles/applications/docker.py @@ -0,0 +1,9 @@ +import archinstall + +# Define the package list in order for lib to source +# which packages will be installed by this profile +__packages__ = ["docker"] + +installation.add_additional_packages(__packages__) + +installation.enable_service('docker') |