mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-03-15 13:36:18 +00:00
add Caddy and Authelia support with configuration scripts and Docker setup
This commit is contained in:
13
containers/authelia/Dockerfile-authelia
Normal file
13
containers/authelia/Dockerfile-authelia
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM alpine:latest AS tools
|
||||
RUN apk add --no-cache inotify-tools
|
||||
|
||||
FROM authelia/authelia:latest
|
||||
|
||||
COPY --from=tools /usr/bin/inotifywait /usr/bin/inotifywait
|
||||
COPY --from=tools /usr/lib/libinotifytools* /usr/lib/
|
||||
|
||||
COPY entrypoint.sh /usr/local/bin/authelia-entrypoint.sh
|
||||
|
||||
RUN chmod +x /usr/local/bin/authelia-entrypoint.sh
|
||||
|
||||
ENTRYPOINT ["/usr/local/bin/authelia-entrypoint.sh"]
|
||||
Reference in New Issue
Block a user