Now go ahead and deploy your own TinyFileManager with Docker Compose. You’ll wonder how you ever managed files without it.
version: '3.8' services: tinyfilemanager: image: tinyfilemanager/tinyfilemanager:master container_name: tinyfilemanager restart: always ports: - "8080:80" volumes: - ./data:/var/www/html/data - ./config.php:/var/www/html/index.php Use code with caution. What is Docker Compose? - Docker Docs tinyfilemanager docker compose
services: web: image: tinyfilemanager/tinyfilemanager:master container_name: tinyfilemanager ports: - "8080:80" volumes: # Map the 'data' folder on your host to the container - ./data:/var/www/html/data # Optional: Map specific system paths you want to manage # - /home/user/documents:/var/www/html/data/documents environment: # Set your timezone - TZ=America/New_York restart: unless-stopped Now go ahead and deploy your own TinyFileManager