Created
August 29, 2024 02:15
-
-
Save seamonkey420/3a5e774e0b4d1cec3b064e562062d310 to your computer and use it in GitHub Desktop.
Wirepod for Synology NAS Docker. Proper compose file that will use host network.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "2.1" | |
| services: | |
| wirepod: | |
| container_name: wirepod | |
| image: thecrystalcross/wirepod-server:latest | |
| hostname: escapepod | |
| ports: | |
| - 8080:8080 | |
| labels: | |
| - "traefik.enable=true" | |
| - "traefik.http.routers.wirepod_web.rule=Host(`wirepod.local`)" | |
| - "traefik.http.routers.wirepod_web.entrypoints=https" | |
| - "traefik.http.routers.wirepod_web.tls=true" | |
| - "traefik.http.routers.wirepod_web.tls.certresolver=https" | |
| - "traefik.http.services.wirepod_web.loadbalancer.server.port=8080" | |
| network_mode: host |
Author
Author
gave up temp on this and am back to hyper-v vm since i have my desktop on all the time
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
previously i ran wire-pod for my Vector robot in hyper-v on my windows 10 desktop but wanted to offload processing to my synology nas. Prior attempts to manually configure container failed, issues seemed to be container could not reach my vector robot due to the bridge network and synology firewall. hoping this will override ability to set network (synology docker implementation does not allow one to see the advanced settings on a docker container where you can change network).
not working yet though