Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-29 07:14:34 -0400
committerGitHub <noreply@github.com>2021-04-29 07:14:34 -0400
commit5cf0419073699ef476d21feacb50f06cf96e4f94 (patch)
treeb3ca17615b9112b5a29bb214020056b3f9e7163c /profiles/applications
parentaa0f4327260ab39077999859c593ed6d5c12822c (diff)
Add Docker Application Profile
Diffstat (limited to 'profiles/applications')
-rw-r--r--profiles/applications/docker.py9
1 files changed, 9 insertions, 0 deletions
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')