Skip to main content

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