1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-22 19:20:54 +00:00

Merge pull request #1260 from porjo/porjo_ipv6

Listen on IPv4 and IPv6
This commit is contained in:
Peter Bieringer 2024-03-02 05:40:22 +01:00 committed by GitHub
commit 5678453b95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,6 +28,6 @@ VOLUME /var/lib/radicale
EXPOSE 5232
# Run Radicale
ENTRYPOINT [ "/app/bin/python", "/app/bin/radicale"]
CMD ["--hosts", "0.0.0.0:5232"]
CMD ["--hosts", "0.0.0.0:5232,[::]:5232"]
USER radicale