- 8
- 0
- NAS
- DS225+
- Operating system
- Linux
- Windows
I am trying to set up several ddocker containers.
I did install it but can't access it via web console.
My goal is it to have thunderbird off of my laptop and in one central point to also access it from my phone.
I want to be able to just have one complete container that I can back up and move around, I hope that I correctly understood that I can do all this by chosing this path?
There seem to be various variants of thunderbird in docker? I went with the linuxserver solution.
But since nothing is running yet, I am happy to use any other variant that you guys suggest.
thunderbird - LinuxServer.io
GitHub - jlesage/docker-thunderbird: Docker container for Thunderbird
what is the diferrence between linuxserver and the jlesage version?
If I want to chose other ports, how would I do that?
Is this NAT?
when I try to connect to whatever I have done (not sure, I am new to this) then I get to https://(IPNAS):3005 the following:
If I connect to HTTP then I get this:
I am happy to start from scratch. what version do you recommend?
I did install it but can't access it via web console.
My goal is it to have thunderbird off of my laptop and in one central point to also access it from my phone.
I want to be able to just have one complete container that I can back up and move around, I hope that I correctly understood that I can do all this by chosing this path?
There seem to be various variants of thunderbird in docker? I went with the linuxserver solution.
But since nothing is running yet, I am happy to use any other variant that you guys suggest.
thunderbird - LinuxServer.io
GitHub - jlesage/docker-thunderbird: Docker container for Thunderbird
what is the diferrence between linuxserver and the jlesage version?
docker-compose:
Code:
---
services:
thunderbird:
image: lscr.io/linuxserver/thunderbird:latest
container_name: thunderbird
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /path/to/config:/config
ports:
- 3000:3000
- 3001:3001
shm_size: "1gb"
restart: unless-stopped
If I want to chose other ports, how would I do that?
Is this NAT?
Code:
ports:
- 3000:3000
- 3001:3001
when I try to connect to whatever I have done (not sure, I am new to this) then I get to https://(IPNAS):3005 the following:
Code:
This site cannot provide a secure connection
If I connect to HTTP then I get this:
Code:
400 Bad Request
The plain HTTP request was sent to HTTPS port
nginx/1.24.0 (Ubuntu)
I am happy to start from scratch. what version do you recommend?