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

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