A simple cloud drive mapping web app supports local, FTP/SFTP, S3, OneDrive, WebDAV, Google Drive.
10K+
A cross-platform, self-hosted file management server with a modern web UI.
Manage local files and a wide range of cloud storage providers from a single, unified interface.
Live Demo · Documentation · Releases
English | 简体中文
go-drive is a lightweight file-management server written in Go with a Vue/TypeScript frontend. It lets you browse, upload, organize, and share files across many different storage backends — local disks, FTP/SFTP, WebDAV, S3-compatible object storage, OneDrive, Google Drive, and more — all through one clean web interface.
The whole application ships as a single self-contained binary (the web UI and i18n assets are embedded), making it trivial to deploy on a server, NAS, or inside a container.
Default credentials: user
admin, password123456. Change the password immediately after the first login.
libvips/ffmpeg).| Drive | Notes |
|---|---|
| Local | Files on the host filesystem |
| FTP | FTP server |
| SFTP | SSH file transfer |
| WebDAV | Any WebDAV-compatible server |
| S3 | Amazon S3 and S3-compatible object storage |
| OneDrive | Microsoft OneDrive |
| Google Drive | Google Drive |
| Dropbox | Implemented as a scripted (JavaScript) drive |
| Qiniu | Qiniu Cloud, implemented as a scripted (JavaScript) drive |
See the documentation for per-drive setup details.
mkdir go-drive-data
docker run -d --name go-drive \
-p 8089:8089 \
-v "$(pwd)/go-drive-data:/app/data" \
devld/go-drive
go-drive-data is the data directory. Mapping it outside the container ensures your data survives application upgrades. Once running, open http://localhost:8089.
The official Docker image bundles ffmpeg and libvips, and automatically enables the video/audio and high-performance image thumbnail handlers.
To customize the configuration, first extract the default config.yml from the image, then mount it back into the container:
# Extract config.yml from a throwaway container
cid=$(docker run -d devld/go-drive) && docker cp "$cid:/app/config.yml" . && docker stop "$cid" && docker rm "$cid"
# Run with both the data dir and the config file mapped outside the container
docker run -d --name go-drive \
-p 8089:8089 \
-v "$(pwd)/go-drive-data:/app/data" \
-v "$(pwd)/config.yml:/app/config.yml" \
devld/go-drive
services:
go-drive:
image: devld/go-drive
container_name: go-drive
ports:
- "8089:8089"
volumes:
- ./go-drive-data:/app/data
restart: unless-stopped
docker compose up -d
Download the archive for your platform from the Releases page, extract it, and run:
./go-drive
Run go-drive.exe.
By default go-drive reads config.yml from the working directory (if present) and listens on :8089. Useful flags:
./go-drive -c /path/to/config.yml # use a specific config file
./go-drive -show-config # print the parsed configuration
./go-drive -v # print version information
go-drive is configured through a YAML file. A fully documented reference lives in docs/config.yml; copy it and adjust as needed. Selected options:
| Option | Default | Description |
|---|---|---|
listen | :8089 | Address the HTTP server binds to |
data-dir | ./data | Directory for all application data (database, sessions, thumbnails, local files, etc.) |
temp-dir | data-dir/temp | Temporary file directory |
max-concurrent-task | 100 | Max concurrent tasks (copy, move, delete) |
free-fs | false | Allow Local drives to use absolute paths (security risk) |
trusted-proxies | empty | Trusted proxy IPs/CIDRs for resolving the real client IP |
api-path / web-path | empty | Override API/static paths when served under a sub-path |
go-drive supports SQLite (default) and MySQL. WebDAV access, full-text search, thumbnail handlers, and reverse-proxy/sub-path deployment are all configured here too — see docs/config.yml and the documentation for the full reference.
⚠️ Setting
free-fs: truelets admin users browse the entire host filesystem through Local drives. Leave itfalseunless you understand the implications.
Prerequisites: the Go version pinned in go.mod, Node.js 24, and a C toolchain (SQLite requires CGO).
git clone https://github.com/devld/go-drive.git
cd go-drive
# Build everything: frontend, backend, and release archive
make all
make all builds the Vue frontend (web/dist), embeds it together with the i18n assets into the Go binary, and produces a release archive under build/. For frontend-only development:
cd web
npm install
npm run dev # start the dev server
npm run lint # type-check + lint
npm run build-web # production build
Contributions are welcome! Please:
go test, and go test -race for concurrent code).npm run lint and npm run build-web from web/.fix(server): ...).Released under the MIT License. Copyright © 2020 devld.
Content type
Image
Digest
sha256:4b24488b4…
Size
73.9 MB
Last updated
5 days ago
docker pull devld/go-drive