g3

(★ 23)

S3-compatible object storage backed by Google Drive — pooled, balanced, single Go binary with an embedded web panel.

File Explorer

  • .dockerignore
  • .env.example
  • .gitignore
  • .mcp.json
  • AGENTS.md
  • biome.json
  • build.sh
  • CLAUDE.md
  • components.json
  • CONTRIBUTING.md
  • Dockerfile
  • LICENSE
  • Makefile
  • next.config.ts
  • nixpacks.toml
  • NOTICE
  • package-lock.json
  • package.json
  • postcss.config.mjs
  • README.md
  • SECURITY.md
  • tsconfig.json
  • vitest.config.ts

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

crypto

View Details ▼

Manage cryptography.
Accessed in configuration mode.

crypto key generate rsa

Generate an `rsa` key:

crypto key generate rsa modulus {{1024}}

Define a modulus for a key:

crypto key zeroize

Remove all keys:

🔍

aws s3 cp

View Details ▼

Copy local files or S3 objects to another location locally or in S3.

aws s3 cp {{path/to/file}} s3://{{bucket_name}}/{{path/to/remote_file}}

Copy a file from local to a specific bucket:

aws s3 cp s3://{{bucket_name1}}/{{path/to/file}} s3://{{bucket_name2}}/{{path/to/target}}

Copy a specific S3 object into another bucket:

aws s3 cp s3://{{bucket_name1}}/{{path/to/file}} s3://{{bucket_name2}}

Copy a specific S3 object into another bucket keeping the original name:

🔍

aws s3 ls

View Details ▼

List AWS S3 buckets, folders (prefixes), and files (objects).

aws s3 ls

List all buckets:

aws s3 ls s3://{{bucket_name}}

List files and folders in the root of a bucket (`s3://` is optional):

aws s3 ls {{bucket_name}}/{{path/to/directory}}/

List files and folders directly inside a directory:

🔍

aws s3 mb

View Details ▼

Create S3 buckets.

aws s3 mb s3://{{bucket_name}}

Create an S3 bucket:

aws s3 mb s3://{{bucket_name}} --region {{region}}

Create an S3 bucket in a specific region:

aws s3 mb help

Display help:

🔍

docker build

View Details ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

// repository documentation