Replies: 5 comments 7 replies
-
you can install it on Synology, through docker-compose. |
Beta Was this translation helpful? Give feedback.
-
Unfortunately, I'm not very familiar with docker-compose. version: '3.3' unfortunately when I try this error comes out and the installation is not successful: Any ideas on how to fix? |
Beta Was this translation helpful? Give feedback.
-
I try to load the page http: //ip.of.my.nas: 8789 This is the complete log from when I restart the container to when I try to log in for the first time and the page does not load: / | ___ _ ____ _____ _ __ / |() | | ___ | | | | __ Brought to you by serversideup.netTo support Server Side Up projects visit:
|
Beta Was this translation helpful? Give feedback.
-
You changed the container port in the docker-compose file. I wrote 443 and you changed it to 80. If you check the log, notice the line at the beginning regarding SSL_MODE:
This means that by default the container accepts only SSL connections (on port 443). So, either you change the port 80 in the compose file to 443 or you add an environment variable in the compose file: With mixed, the container accepts HTTP/HTTPS connections on 80/443 ports, so you can keep your port 80. Once you change the compose file, you need to rebuild the container: |
Beta Was this translation helpful? Give feedback.
-
hi, can you add your project on "https://registry.hub.docker.com"?
If you publish it here too, we can also install it on Synology nas that support dockers.
I gladly accept a guide on how to install it on Synology in another way.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions