From 37d660b6fa1d0315cc58903b42319e06af11537f Mon Sep 17 00:00:00 2001 From: dominikhoebert <42839893+dominikhoebert@users.noreply.github.com> Date: Mon, 29 Jul 2024 20:35:49 +0200 Subject: [PATCH] added alpine --- .gitignore | 3 +++ alpine/compose.yml | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 alpine/compose.yml diff --git a/.gitignore b/.gitignore index 48cd0c0..24ff638 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,6 @@ postgres/data/ postgres/dev/ databases/dev/ mariadb/dbgate-data/ +authentik/certs/ +authentik/custom-templates/ +authentik/media/ diff --git a/alpine/compose.yml b/alpine/compose.yml new file mode 100644 index 0000000..6f5ca68 --- /dev/null +++ b/alpine/compose.yml @@ -0,0 +1,15 @@ +# https://hub.docker.com/_/alpine + +# Alpine Linux⁠ is a Linux distribution built around musl libc⁠ and BusyBox⁠. +# The image is only 5 MB in size and has access to a package repository⁠ that is much more complete than other BusyBox based images. +# This makes Alpine Linux a great image base for utilities and even production applications. + +name: alpine +services: + alpine: + stdin_open: true + tty: true + container_name: alpine + image: alpine + command: ash + \ No newline at end of file