Jump to content

C4ArtZ

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by C4ArtZ

  1. 2 minutes ago, ice pube said:

    Thanks, does this look right? Sorry my coding skills are non-existent. 

     

     

    Capture.PNG

    Almost. You're missing the comma after "auth" : null } and you should probably format it like I have below. PV might still complain if you don't format it exactly like it expects.

    It should look like this:

    {
      "search": {
        "host": "http://10.0.0.10:9200",
        "log": false,
        "version": "7.x",
        "auth": null
      },
      "auth": {
        "password": null
      },
      "binaries": {
        "ffmpeg": "/usr/bin/ffmpeg",
        "ffprobe": "/usr/bin/ffprobe",

     

  2. Just now, ice pube said:

    I added the top line to my config file per the instructions, but I keep getting this error

     

    2021-03-05T16:20:10.068Z vault:message Loading "/config/config.json"...
    2021-03-05T16:20:10.071Z vault:error ERROR when loading config, please fix it. Run your file through a linter before trying again (search for 'JSON/YAML linter' online).
    2021-03-05T16:20:10.071Z vault:error Unexpected string in JSON at position 101

     

    I edited the json file using notepad++ on my windows vm and then copied it back to the config dir in appdata

    Your JSON syntax is invalid. Make sure it starts after the first "{" and there is a comma after the closing } of "search". It should be indented the same as the entry below it. Sorry, poor choice of words by me. I will change the template description.

  3. Release 0.26 seems to break the Elasticsearch integration. When the template was created, Elasticsearch was optional. I have updated the template to only target /porn-vault:porn-vault:0.25.0-alpine. (Thank you @DenizenEvil!) You should be able to get the new template in about 2 hours from now. I would recommend removing the old container + image from your server before downloading the new one. All your data should be in the persistent share you specified. I will try release 0.26 again in a week or two.

  4. On 2/22/2021 at 10:00 PM, Keek Uras said:

    Porn Vault doesn't seem to work with a lot of mp4 files. Any suggestion on what might be done for that? Every one that won't play in the interface works fine in VLC or any other media player used. Thanks in advance.

     

    Could it be this? Can you tell what's the difference between the ones that play and the ones that don't?

    • Thanks 1
  5. 7 hours ago, BBoYTuRBo said:

    Thanks for your work!

     

    For farmOS, does the template create the database as well? Or do I need to setup up a separate container containing the DB and link them?

    The template does not create a database. You can either create a database in a seperate container or use the internal sqlite database. During the first time setup farmOS will ask you what you prefer.

  6. 32 minutes ago, thorkull said:

    I tried using http://localhost:9200, I've just tried with http://elasticsearch:9200 and even the IP address. No change.

    Sadly I can't get it to work aswell. I know too little about elasticsearch to be of any help. You might want to try creating an issue on their Github page.

  7. 12 minutes ago, thorkull said:

    Hi,

     

    I installed PornVault and Elasticsearch but can't seem to get the automatic search and tagging working. Not sure what I may have done wrong, any suggested actions?

     

    Thanks!

    I personally haven't tried it. Did you add elasticsearch to your PornVault config like it is described here?

  8. On 2/20/2021 at 12:13 AM, odiby said:

    awesome work :) Thank you.

     

    I would like to use kutt. unfortunately I filled the domain field in the template initial with the Protokoll `https://kutt.mydoma.in/`

    I already did change it to just `kutt.mydoma.in` but still, if I start the webui (from unraid) the browser try to open `https://https//kutt.mydoma.in`

    How can I change this? I couldn't find a entry in the postgresql database. Where is this info stored? 

     

    Does anybody do have a valid config for use with the swag container (Nginx config)?

    I don't have "https://" in the domain field and I also didn't change the WebUI like AwesomeAustn suggested.

    Can you try the following proxy conf with "kutt.yourdomain.com" in the domain field?

    When I click on WebUI it redirects me to the specified domain. Here is my swag config (don't forget to use a seperate docker network):

    server {
        listen 443 ssl;
        listen [::]:443 ssl;
    
        server_name kutt.*;
    
        include /config/nginx/ssl.conf;
    
        client_max_body_size 0;
    
        location / {
    
            include /config/nginx/proxy.conf;
            resolver 127.0.0.11 valid=30s;
            set $upstream_app kutt;
            set $upstream_port 3000;
            set $upstream_proto http;
            proxy_pass $upstream_proto://$upstream_app:$upstream_port;
    
        }
    }
    

     

  9. This is the general support thread for all Docker templates by me.

     

    Please know that I can only really support the template itself. Most issues within the containers are best handled with their maintainers. You can find them by clicking on the "Project" link here or within Unraid.

     

    I currently have templates for:

     

  10. 19 hours ago, ptmuldoon said:

    Did you reboot unraid to get it start?

    It's suppose to be 3 separate lines above like in that link.  Unsure why I can't get it show that way here in the forums.

    That could be it. Should they be seperated like this?

     

    COMPOSE_VERSION=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | grep 'tag_name' | cut -d\" -f4) 

    curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose

    chmod +x /usr/local/bin/docker-compose

    Edit:
    Just had another look at the link. No idea how I missed the new lines...

  11. 54 minutes ago, ptmuldoon said:

    I'm still getting my feet wet with Docker on Unraid, but I was looking yesterday for this in trying to install a docker from github that needs compose.  That search led me in finding a post on the web to install docker-compose in unraid.  Those steps were:

     

    I do not know if this is the preferred method, but it did seem to work.

     

    From this post here:

    https://github.com/duhio/docker-compose-usenet

     

    Add the following to /boot/config/go in order to install docker-compose on each boot:

     

    
    COMPOSE_VERSION=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | grep 'tag_name' | cut -d\" -f4) curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose
    
    

     

    That doesn't seem to work for me. But atleast I get "Persmisson denied" instead of "Unknown command"

×
×
  • Create New...