Skip to content

Commit

Permalink
rutorrent: fix runsvdir command path
Browse files Browse the repository at this point in the history
  • Loading branch information
aieu committed Dec 7, 2024
1 parent eaa0ba5 commit f6dafeb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion rutorrent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ EXPOSE 8080 55000

ENTRYPOINT ["/usr/bin/entrypoint.sh"]

CMD ["/sbin/runsvdir", "-P", "/etc/service"]
CMD ["/usr/sbin/runsvdir", "-P", "/etc/service"]
17 changes: 17 additions & 0 deletions rutorrent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,20 @@ Automatically built by Github Actions
- USERNAME=yourname
- PASSWORD=yourpassword
restart: always

#### Trouble

container fails to start and say:

rtorrent: std::bad_alloc

you can run docker with --ulimit

docker run --ulimit nofile=your-value:your-value ......

or your docker-compose

ulimits:
nofile:
hard: your-value
soft: your-value

0 comments on commit f6dafeb

Please sign in to comment.