Skip to content

Instantly share code, notes, and snippets.

@dnburgess
Created August 3, 2021 21:21
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnburgess/94e08122ce9dfcf6c3cd416aa94e8be0 to your computer and use it in GitHub Desktop.
Save dnburgess/94e08122ce9dfcf6c3cd416aa94e8be0 to your computer and use it in GitHub Desktop.
FireFox Connecting to VPN Docker Container
---
version: "2.1"
volumes:
firefox:
services:
firefox:
image: ghcr.io/linuxserver/firefox
container_name: firefox
environment:
- PUID=1026 #change this to for your settings
- PGID=100 #change this to for your settings
- TZ=America/Denver #change this to for your location
volumes:
- firefox:/config
network_mode: "container:gluetun" #change this to whatever your VPN container name is
shm_size: "1gb"
restart: unless-stopped
@Aliyah-Sophia
Copy link

Hi, I am using this on my Raspberry Pi 4 64bit So I used the ghcr.io/linuxserver/firefox:arm64v8-latest image and got it working. My question is can you please show how to add SSL? I'm using NGINX revers prosy and have put access list usernam/password authentication on but it needs SSL. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment