Docker image fails to bind to UDP

#1
Hello,

I'm trying to run the OpenLiteSpeed Docker image on macOS (M1), with the following Compose file:

Code:
version: '3'

services:
  openlitespeed:
    container_name: openlitespeed
    image: litespeedtech/openlitespeed:1.7.16-lsphp81
    ports:
      - "7080:7080"
      - "80:80"
      - "443:443"
      - "443:443/udp"
However it seems that OLS is unable to bind to UDP and QUIC gets disabled:

Code:
2022-06-19 13:19:15.202395 [INFO] [84] QuicEngine::init(), pid: 84, log level [warn].
2022-06-19 13:19:15.217168 [INFO] [84] [Module: modcompress 1.1] has been initialized successfully
2022-06-19 13:19:15.217323 [INFO] [84] [Module: moddecompress 1.1] has been initialized successfully
2022-06-19 13:19:15.217551 [INFO] [84] [Module: cache 1.64] has been initialized successfully
2022-06-19 13:19:15.239081 [NOTICE] [84] Created new Listener [adminListener].
2022-06-19 13:19:15.239964 [NOTICE] [84] [UDP *:7080] Failed to enable QUIC.
2022-06-19 13:19:15.240556 [INFO] [84] [*:8088] Enable SO_REUSEPORT .
2022-06-19 13:19:15.240618 [NOTICE] [84] [*:8088] Add SO_REUSEPORT socket, #1 to #4
2022-06-19 13:19:15.240979 [NOTICE] [84] Created new Listener [Default].
2022-06-19 13:19:15.241920 [INFO] [84] [*:80] Enable SO_REUSEPORT .
2022-06-19 13:19:15.242038 [NOTICE] [84] [*:80] Add SO_REUSEPORT socket, #1 to #4
2022-06-19 13:19:15.242338 [NOTICE] [84] Created new Listener [HTTP].
2022-06-19 13:19:15.246799 [INFO] [84] [*:443] Enable SO_REUSEPORT .
2022-06-19 13:19:15.246846 [NOTICE] [84] [*:443] Add SO_REUSEPORT socket, #1 to #4
2022-06-19 13:19:15.246906 [NOTICE] [84] Created new Listener [HTTPS].
2022-06-19 13:19:15.246936 [INFO] [84] [*:443] Enable SO_REUSEPORT .
2022-06-19 13:19:15.247030 [NOTICE] [84] [UDP *:443] failed to start SO_REUSEPORT socket
2022-06-19 13:19:15.247057 [NOTICE] [84] [UDP *:443] Failed to enable QUIC.
The same Compose file works fine on Windows with WSL2.

Any idea of what might be causing this issue?

I'm attaching the full log file.

Thanks.
 

Attachments

Top