I launched it wiht this docker compose config:
services:
server:
image: ghcr.io/orhun/rustypaste/rustypaste:0.16.1
container_name: rustypaste
restart: always
environment:
- RUST_LOG=debug
env_file:
- ./.env
ports:
- "10028:8000"
volumes:
- ./docker-data/upload/:/app/upload
- ./config.toml:/app/config.toml
and got these errors
❯ docker compose logs
rustypaste | Error: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }
rustypaste | Error: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }
rustypaste | Error: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }
no idea where this one is coming from. even with trace, there's only the correctly-parsed config file and this error and that's it. The app is crashing on start
I launched it wiht this docker compose config:
and got these errors
no idea where this one is coming from. even with trace, there's only the correctly-parsed config file and this error and that's it. The app is crashing on start