Skip to content

Instantly share code, notes, and snippets.

@rnbguy
Last active January 20, 2025 11:39
Show Gist options
  • Save rnbguy/f2e9f810b9372e0e904ca67916cb6333 to your computer and use it in GitHub Desktop.
Save rnbguy/f2e9f810b9372e0e904ca67916cb6333 to your computer and use it in GitHub Desktop.
Acestream docker with SigaVPN

A simple fire-and-forget docker-compose setup for AceStream with VPN.

Just type docker-compose up and hit enter!

6878 port will be available within the local network as well (great for casting).

version: '3.6'
services:
sigavpn:
container_name: sigavpn
image: rnbguy/sigavpn
dns:
- 1.1.1.1
- 1.0.0.1
cap_add:
- net_admin
devices:
- /dev/net/tun
environment:
- CODE=ny1
acestream:
container_name: acestream
image: rnbguy/acestream
privileged: true
network_mode: service:sigavpn
port_forward:
container_name: port_forward
image: alpine/socat
ports:
- 6878:6878
command:
- TCP-LISTEN:6878,fork,reuseaddr
- TCP:sigavpn:6878
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment