-
Hey guys, I'm trying to deploy a turn server and I need to expose |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Ok, this is completely possible using the docker-compose.yml builder. I've got the TURN server working. This is such an amazing project 😲 !! |
Beta Was this translation helpful? Give feedback.
-
@tinchoz49 can you probably share how you did it? I take a docker-compose and define in it the ports: ...
samba:
build: ./docker/smb/
container_name: samba
restart: unless-stopped
environment:
TZ: "Europe/Zurich"
networks:
- default
ports:
- "137:137/udp" # advertise shares (NMBD)
- "138:138/udp" # advertise shares (NMBD)
- "139:139/tcp" # default smb port
- "445:445/tcp" # default smb port
... But then I can't connect to it. Do I need to do something else? The firewall should be ok. |
Beta Was this translation helpful? Give feedback.
Ok, this is completely possible using the docker-compose.yml builder. I've got the TURN server working. This is such an amazing project 😲 !!