Skip to content

Instantly share code, notes, and snippets.

@seamonkey420
Created August 29, 2024 02:15
Show Gist options
  • Select an option

  • Save seamonkey420/3a5e774e0b4d1cec3b064e562062d310 to your computer and use it in GitHub Desktop.

Select an option

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.
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
@seamonkey420
Copy link
Author

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

@seamonkey420
Copy link
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