cmer

Members
  • Posts

    71
  • Joined

  • Last visited

Everything posted by cmer

  1. I have updated the container. It should show up in a few minutes. Just update and you should be good to go!
  2. Awesome thanks so much! I knew there'd be a quick way to fix this 17M files, 9.1TB here. We'll see if your settings do the trick. I might have to bump it to 4096.
  3. I might just get excited and do it sooner. But can't promise!
  4. Will do. It might take me a couple of weeks though as I'm busy with something else these days.
  5. What's the easy way to allocate more ram to Java? (if there is) This constantly crashes my machine unfortunately. Well know problem for Java apps... https://support.code42.com/CrashPlan/6/Troubleshooting/Adjust_CrashPlan_settings_for_memory_usage_with_large_backups http://www.geert.io/java-freezing-due-to-garbage-collector.html
  6. Did you try with "Pro" disabled first? You need a license key for Pro. What does your log file say?
  7. Can you post a picture of your setup?
  8. Thanks so much! That was too easy, not sure how I missed this. All your containers have been rock solid. Another one I'm using, not so much This will come in handy.
  9. Is there a way to configure Docker on Unrais to start my containers with "--restart unless-stopped"? For those of you wondering what that does: https://blog.codeship.com/ensuring-containers-are-always-running-with-dockers-restart-policy/ Thanks
  10. By default it reads everything in that folder, yes.
  11. This is what I use. It works perfect. server { listen 443 ssl http2; server_name foo.bar.com; root /config/www; index index.html index.htm index.php; # add_header Front-End-Https on; client_max_body_size 0; location / { proxy_pass http://10.0.0.4:8000/; } location /seafhttp { rewrite ^/seafhttp(.*)$ $1 break; proxy_pass http://10.0.0.04:8082; client_max_body_size 0; proxy_connect_timeout 36000s; proxy_read_timeout 36000s; proxy_send_timeout 36000s; send_timeout 36000s; proxy_request_buffering off; } }
  12. This is the support thread for Caddy Web Server, a simple yet powerful web server with automatic support for HTTPS. It is available in Community Applications or at https://www.github.com/cmer/docker-templates.
  13. This is the support thread for my first Unraid Docker Template. It's for the wonderful "self-hosted Dropbox" alternative Seafile. The image supports both the community edition and the professional edition (free up to 3 users). It is available in Community Applications or at https://www.github.com/cmer/docker-templates.
  14. I'm having issues connecting to the daemon from the GTK thin client. The daemon listens on port 37054. I assume I can't connect from the outside (my local network or internet) because I have the container configured to route traffic through PIA VPN. How can I connect to the daemon from "outside"? I need the GTK client to configure YARSS2. Thanks!
  15. I was hoping to avoid the VM, but I guess I can live with this. Thanks
  16. I'm trying to add some semi-obscure Docker container from Github (not on Docker Hub AFAIK) and I'm not sure how/where to start. Can anybody help? The repo in question is: https://github.com/trick77/dockerflix Thanks!