From ced1c57302855d7024d66f8eecb5915e4b472b0a Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 31 Dec 2023 22:27:01 +0200 Subject: use port 8080 --- Dockerfile | 2 +- Makefile | 2 +- config | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0947b78..3f45c39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,6 @@ COPY ./htpasswd-test /auth/htpasswd RUN chown 700 /auth RUN chown 600 /auth/htpasswd -EXPOSE 5232 +EXPOSE 8080 USER radicale CMD ["python3", "-m", "radicale", "--debug"] diff --git a/Makefile b/Makefile index b0ef3d7..5c0defd 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ run: build docker run \ -v collections:/collections \ -v auth:/auth \ - -p 5232:5232 \ + -p 8080:8080 \ --name radicale radicale aws: build docker tag radicale:latest 634617747016.dkr.ecr.eu-central-1.amazonaws.com/radicale:latest diff --git a/config b/config index af83bd2..18399fe 100644 --- a/config +++ b/config @@ -1,6 +1,6 @@ [server] # Bind all addresses -hosts = 0.0.0.0:5232, [::]:5232 +hosts = 0.0.0.0:8080, [::]:8080 [auth] type = htpasswd -- cgit v1.2.3