FireFox Docker Container

Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards.

Docker-Compose.yml

---
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
    ports:
      - 3456:3000
    shm_size: "1gb"
    restart: unless-stopped