Created
August 3, 2021 21:21
-
-
Save dnburgess/94e08122ce9dfcf6c3cd416aa94e8be0 to your computer and use it in GitHub Desktop.
FireFox Connecting to VPN Docker Container
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" | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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