Tinyfilemanager Docker Compose _verified_ -
COPY custom.css /var/www/html/custom.css
services: tinyfilemanager: image: pritunl/tinyfilemanager:latest container_name: tinyfilemanager restart: unless-stopped ports: - "8080:80" volumes: - ./data:/var/www/html - ./uploads:/var/www/html/uploads environment: - USERNAME=admin - PASSWORD=admin123 - TZ=UTC tinyfilemanager docker compose
version: '3' services: tinyfilemanager: image: tinyspeck/tinyfilemanager volumes: - ./data:/var/www/html/data ports: - "8080:80" COPY custom
services: tinyfilemanager: build: . # ... rest of the configuration tinyfilemanager docker compose
docker compose up -d