• Dockerfile 77.5%
  • Shell 22.5%
Find a file
Leonardo Ledda f851272f36
Add Forgejo workflow
Signed-off-by: Leonardo Ledda <leonardoledda@gmail.com>
2026-06-20 14:37:07 +02:00
.forgejo/workflows Add Forgejo workflow 2026-06-20 14:37:07 +02:00
.github/workflows Add ARM64 support 2026-03-29 13:06:22 +02:00
Dockerfile Automatically create database 2026-03-29 15:04:38 +02:00
entrypoint.sh Automatically create database 2026-03-29 15:04:38 +02:00
README.md Automatically create database 2026-03-29 15:04:38 +02:00

rustbin-docker

Docker image for https://github.com/PeroSar/rustbin

Running

docker run

docker run -d \
  --name rustbin \
  -p 3000:3000 \
  -v rustbin-data:/app/data \
  -e DATABASE_URL=sqlite:///app/data/rustbin.db \
  leddaz/rustbin:latest

Docker Compose

services:
  rustbin:
    image: leddaz/rustbin:latest
    container_name: rustbin
    restart: unless-stopped
    ports:
      - "3000:3000"
    volumes:
      - rustbin-data:/app/data
    environment:
      DATABASE_URL: sqlite:///app/data/rustbin.db

volumes:
  rustbin-data:

Configuration

Refer to the original repo.