services:
  filezilla:
    image: lscr.io/linuxserver/filezilla:latest
    container_name: filezilla
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
    volumes:
      - ./config:/config
      - /home/beddo/mnt/hdd1:/downloads # - Pfad zur local HDD oder USB HDD 
    ports:
      - 3000:3000
      - 3001:3001
    shm_size: "1gb" # - max Ram nutzung 
    restart: unless-stopped