diff --git a/authelia/docker-compose.yml b/authelia/docker-compose.yml new file mode 100644 index 0000000..117e26d --- /dev/null +++ b/authelia/docker-compose.yml @@ -0,0 +1,17 @@ +services: + authelia: + container_name: authelia + image: authelia/authelia:4.39.5 + restart: unless-stopped + environment: + - TZ=${TZ} + volumes: + - ${APPDATA_PATH}/authelia/config:/config + ports: + - ${PORT}:9091 + # healthcheck: + # test: ["CMD", "curl", "-f", "http://localhost:9091/api/state"] + # start_period: 30s + # interval: 10s + # timeout: 10s + # retries: 3