FileGator logo

FileGator

Open-source, self-hosted web application for managing files and folders.

#storage #file manager #Screenshots

Getting Started

  1. Create a folder and move to the folder
    mkdir file-gator && cd file-gator
    
  2. Create docker-compose.yml file with the following content:
    docker-compose.yml
    services:
      filegator:
        container_name: filegator
        image: filegator/filegator
        restart: always
        ports:
          - "9096:8080"
        volumes:
          - files:/var/www/filegator/repository
    volumes:
      files:
    
  3. Run the following command to start the container
    docker compose up -d
    
  4. Open the browser and go to http://localhost:9096 to access the FileGator.
    Username: admin
    Password: admin123