Go to file
2022-07-26 14:01:14 +01:00
.github/workflows Update build.yml 2022-07-25 20:07:11 +01:00
VoidCat S3 optional checksum 2022-07-26 14:01:14 +01:00
.dockerignore Allow copying .git folder into docker image 2022-03-08 14:03:23 +00:00
.gitignore Add swagger and docs 2022-03-08 13:47:42 +00:00
docker-compose.yml Render html server side for proper metadata tagging 2022-07-09 23:19:41 +01:00
Dockerfile Fix build for git tagging 2022-03-08 13:08:28 +00:00
nospa.dockerfile Fix nospa image 2022-03-08 14:06:16 +00:00
README.md Add postgres support for users/files 2022-06-06 22:51:25 +01:00
VoidCat.sln Pass Seq settings directly 2022-01-28 11:14:39 +00:00

Void.cat

Free, simple file hosting

Features

  • Profiles
  • File bandwidth statistics
  • Administration features
  • File download paywall

Running

Use the docker image to run void.cat:

docker run --rm -it -p 8080:80 ghcr.io/v0l/void.cat/app:latest

Then open your browser at http://localhost:8080.

The first registration will be set as admin, so make sure to create your own account

Usage

Simply drag and drop your files into the dropzone, or paste your screenshots or files into the browser window.

From cli you can upload with curl:

curl -X POST \
  --data-binary @spicy_memes.jpg \
  "https://void.cat/upload?cli=true"

This command will return the direct download URL only. To get the json output simply remove the ?cli=true from the url.

Development

To run postgres in local use:

docker run --rm -it -p 5432:5432 -e POSTGRES_DB=void -e POSTGRES_PASSWORD=postgres postgres -d postgres

To run MinIO in local use:

docker run --rm -it -p 9000:9000 -p 9001:9001 minio/minio -- server /data --console-address ":9001"