[Support] ich777 - Application Dockers


ich777

Recommended Posts

13 minutes ago, blaine07 said:

Pardon my ignorance...: with PhotoPrism is it possible to map a few different "Storage Paths" of pictures? If so how would I do that? Just add the same path below again and map to different folder on Unraid but point to same /photoprism/originials/ or??

No, that's not a really good idea, I would make subfolders within that folder '/photoprism/originals/dir1', '/photoprism/originals/dir2',...

 

EDIT: Why ignorance? :/

  • Like 1
Link to comment
No, that's not a really good idea, I would make subfolders within that folder '/photoprism/originals/dir1', '/photoprism/originals/dir2',...
 
EDIT: Why ignorance?

Perfect makes sense. Have you played with PhotoPrism much? Got tons of pics... been looking for a gallery solution.

Ignorance because with Unraid and Docker I sometimes think I know what I’m doing; and I’m often wrong lol

Thank you for the reply! :-)
Link to comment
2 hours ago, blaine07 said:

Have you played with PhotoPrism much?

Not really but it's now pretty mature I think... :D

 

2 hours ago, blaine07 said:

Got tons of pics...

Then I would recommend to connect to an external database like MariaDB from @linuxserver.io to get the most possible out of it.

A short how to connect Photoprism to MariaDB should be in the container description but keep in mind you have to set up a user/database in MariaDB.

  • Like 1
Link to comment
5 hours ago, adambeck7 said:

Is there any way to make the PhotoPrism deployable? It doesn't have the nginx or www folders most of my other containers have.

I think I don't understand what you want to do exactly?

This application has it's own frontend and doesn't need nginx or a www folder.

 

1 hour ago, trueimage said:

Anyone else have an issue where jDownloader2 either won't pick up the pasted text/link

Yes, this is a common problem and has to do with the Java Runtime and does only work after a few minutes after you opened up the VNC Webinterface.

 

1 hour ago, trueimage said:

when it does and you manually click add link it does nothing... even though the link is valid?

This is also a completely common problem with some links that it cannot resolve correctly.

 

You can enable C'n'L with my container if that is more convenient to you... But you have to tell me if you are on Windows/Linux/Mac.

Link to comment
15 hours ago, ich777 said:

I think I don't understand what you want to do exactly?

This application has it's own frontend and doesn't need nginx or a www folder.

I want to add it as a subdomain instead of just accessing it locally. For Nextcloud and Code-Server and others I've needed to edit the nginx config to add the subdomain there. Is there another way to do it?

Link to comment
6 hours ago, adambeck7 said:

I want to add it as a subdomain instead of just accessing it locally.

Can you give me an example of how you do it with a nginx configuration.

 

Sure this is completely possible with a reverse proxy, do I understand that right that you want to do something like: photoprism.yourdomain.net

Link to comment
11 minutes ago, adambeck7 said:

Exactly. So for Nextcloud and Code-Server, in appdata/nextcloud/www/nextcloud/config/config.php I just need to update the `overwritehost` and `overwrite.cli.host` properties w/ subdomain.mydomain.com and then update my swag configuration. Sorry I wasn't being clear and thanks for all your help! Let me know if you have a 'buy me a coffee' link or anything. 

 

If you add something like the following in your SWAG configuration should do the job also (change the values in CAPITALS):

server {
	listen 443 ssl;

	include /config/nginx/ssl.conf;

	server_name photprism.YOURDOMAIN.at;

	location / {
		proxy_redirect     off;
		proxy_pass http://IPOFYOURCONTAINER:PORT;

		proxy_set_header Range $http_range;
		proxy_set_header If-Range $http_if_range;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header Host $host;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

		proxy_http_version 1.1;
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection "upgrade";
		}
}

 

This would be a simple reverse proxy.

  • Like 1
Link to comment
2 minutes ago, ich777 said:

 

If you add something like the following in your SWAG configuration should do the job also (change the values in CAPITALS):


server {
	listen 443 ssl;

	include /config/nginx/ssl.conf;

	server_name photprism.YOURDOMAIN.at;

	location / {
		proxy_redirect     off;
		proxy_pass http://IPOFYOURCONTAINER:PORT;

		proxy_set_header Range $http_range;
		proxy_set_header If-Range $http_if_range;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header Host $host;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

		proxy_http_version 1.1;
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection "upgrade";
		}
}

 

This would be a simple reverse proxy.

Thanks so much! I was actually just watching the spaceinvaderone's setup video for bitwarden and realized I was barking up the wrong tree. 

  • Like 1
Link to comment
4 minutes ago, Hyperion said:

The only error i get is no connection to the web-interface, the console itselfe works fine

Seems like something is wrong with the IP.

Have you set a Custom IP?

 

In your timeout screenshot it seems that noVNC wants to connect to: 192.168.178.2 but in your log screenshot the IP seems to be: 10.253.0.1

 

Please go into your template and set the right IP at 'Fixed IP address'.

The container is definitely working because I use it right now and the log also seems fine.

 

EDIT: And also select the appropriate interface in the template.

Link to comment
Just now, ich777 said:

Seems like something is wrong with the IP.

Have you set a Custom IP?

 

In your timeout screenshot it seems that noVNC wants to connect to: 192.168.178.2 but in your log screenshot the IP seems to be: 10.253.0.1

 

Please go into your template and set the right IP at 'Fixed IP address'.

The container is definitely working because I use it right now and the log also seems fine.

I have set a custom ip. I connect via wireguard, so this is the 10.253.0.3 address in the server log. If i have set the fixed ip-address i got the same issue and iu get also the same issue if i try to connect fron the exact same network.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.