diff options
| author | Paul Buetow <paul@buetow.org> | 2023-12-31 22:27:01 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-12-31 22:27:01 +0200 |
| commit | ced1c57302855d7024d66f8eecb5915e4b472b0a (patch) | |
| tree | 1353fac53d71a9c4bf76c44beb7b4d0153d71639 | |
| parent | b1f965cbf87d37e9e4ae0806d0af9340ac973c37 (diff) | |
use port 8080
| -rw-r--r-- | Dockerfile | 2 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | config | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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"] @@ -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 @@ -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 |
