You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.4 KiB
YAML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# The [Mullvad Browser](https://mullvad.net/en/browser) is a privacy-focused web
# browser developed in a collaboration between Mullvad VPN and the Tor Project.
# Its designed to minimize tracking and fingerprinting. You could say its a
# Tor Browser to use without the Tor Network. Instead, you can use it with a
# trustworthy VPN.
---
version: "2.1"
services:
mullvad-browser:
image: ghcr.io/linuxserver/mullvad-browser
container_name: mullvad-browser
cap_add:
- NET_ADMIN
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# If using a VPN, set this to your local LAN IP range using CIDR notation. Without it you will be unable to access the web interface. If you have multiple ranges or a complex LAN setup you will need to manage this yourself in the wg0.conf, see the App Setup section for details.
- LOCAL_NET=192.168.0.0/16 # optional
volumes:
# Users home directory in the container, stores local files and settings
- ${BASEDIR:-/volume1/docker}/mullvad-browser/config:/config
ports:
# Mullvad Browser GUI.
- 3000:3000
# Mullvad Browser GUI HTTPS.
- 3001:3001
shm_size: "1gb"
restart: unless-stopped