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