Explorar el Código

Merge pull request #1260 from porjo/porjo_ipv6

Listen on IPv4 and IPv6
Peter Bieringer hace 2 años
padre
commit
5678453b95
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -28,6 +28,6 @@ VOLUME /var/lib/radicale
 EXPOSE 5232
 EXPOSE 5232
 # Run Radicale
 # Run Radicale
 ENTRYPOINT [ "/app/bin/python", "/app/bin/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
+USER radicale