mirror of
https://github.com/LeddaZ/rustbin-docker.git
synced 2026-07-13 07:30:35 +02:00
Docker image for https://github.com/PeroSar/rustbin
- Dockerfile 77.5%
- Shell 22.5%
|
|
||
|---|---|---|
| .forgejo/workflows | ||
| .github/workflows | ||
| Dockerfile | ||
| entrypoint.sh | ||
| README.md | ||
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.