• Dockerfile 77.5%
  • Shell 22.5%
Find a file
2026-08-29 10:51:41 +02:00
.forgejo/workflows Add Forgejo workflow 2026-06-20 14:37:07 +02:00
.github Merge pull request #5 from LeddaZ/dependabot/github_actions/docker/setup-buildx-action-4 2026-08-29 10:51:41 +02:00
Dockerfile Update Go to 1.27.0 2026-08-29 10:51:24 +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.