mirror of
https://github.com/rtisma/mediafire-fuse-docker
synced 2026-01-13 05:04:30 -08:00
1.2 KiB
1.2 KiB
mediafire-fuse for Docker
Description
Since mediafire-fuse was not easy to install on Manjaro, I created this "sandbox" environment to help with downloading many large files to my local machine (or docker host).
Requirements
- docker
- docker-compose
Usage
Running
- Build and run in one step
MEDIAFIRE_USERNAME=<username> MEDIAFIRE_PASSWORD=<password> docker-compose up --build -d
Downloading
- Login to the container
docker-compose exec mediafire-fuse bash
- Copy the files you want from
/mediafire/data(the fuse mount) to/mediafire/host(the mount to the docker host directory)
cp -r /mediafire/data/<some_file_or_folder> /mediafire/host
Then on the docker host, you will see the copied files/directories in ./mediafire-data
Uploading
-
Copy the files you want to
./mediafire-dataon the docker host -
Login to the container
docker-compose exec mediafire-fuse bash
- Copy the files you want to upload to mediafire from
/mediafire/host(the mount to the docker host directory) to the/mediafire/data/(the mediafire fuse mount point)
cp -r /mediafire/host/<some_file_or_folder> /mediafire/data
Stop service
docker-compose down -v