Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-29 11:35:22 +0000
committerGitHub <noreply@github.com>2021-04-29 11:35:22 +0000
commita94cea235d2a111280e2048b52c271a1393396ee (patch)
treeeb6fa832fcc7e0291e1c82d4de84f3efb6065235 /profiles/applications
parent6e646ebebff43186703ba073319843e97f3d05bc (diff)
parent5cf0419073699ef476d21feacb50f06cf96e4f94 (diff)
Merge pull request #389 from dylanmtaylor/patch-8
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')