Skip to content
Discussion options

You must be logged in to vote

The solution was to explicitly set the Docker port to /udp. Here's the complete docker-compose.yml for those who come across this in the future (not sure if the other ports are explicitly required):

services:
  omni:
    image: ghcr.io/siderolabs/omni:v0.47.1
    container_name: omni
    restart: always
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun
    ports: 
      - 5001
      - 10000-10001:10000-10001
      - 50180:50180/udp
      - 8091-8093:8091-8093
    command:
      - --account-id=<REDACTED>
      - --name=onprem-omni
      - --private-key-source=file:///omni.asc
      - --event-sink-port=8091
      - --bind-addr=0.0.0.0:4443
      - --machine-api-bind-addr=0.0.…

Replies: 3 comments 3 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
3 replies
@smira
Comment options

@kenlasko
Comment options

@kenlasko
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by kenlasko
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants