Content
Problems with SMTP settings
Added by Marcel Almeida over 8 years ago
My Open Project image (docker installation / Openproject’s version: 5.0.19) don’t send any e-mail notifications…
I’ve just found an error after run this command:
docker run -d openproject -e EMAIL_DELIVERY_METHOD=smtp -e SMTP_ADDRESS=mysmtpserver.com.br -e SMTP_PORT=587 -e SMTP_DOMAIN=my_domain.com.br -e SMTP_AUTHENTICATION=pmo -e SMTP_ENABLE_STARTTLS_AUTO=true -e SMTP_USER_NAME=“pmo@my_domain.com.br” -e SMTP_PASSWORD=“my_password”
Unable to find image ‘openproject:latest’ locally
Pulling repository docker.io/library/openproject
docker: Error: image library/openproject not found.
See ‘docker run —help’.
When I type the command “docker images”, my openproject image is there:
[root@pmo ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
openproject/community 5.0 dadbb8d13ca1 6 days ago 2.3 GB
Running the command “journalctl -xe”, I can see this:
Jun 16 16:20:13 pmo.my_owndomain.com.br sshd24175: pam_unix(sshd:session): session opened for user root by (uid=0)
Jun 16 16:27:25 pmo.my_owndomain.com.br docker2738: time=“2016-06-16T16:27:25.720742585-03:00” level=error msg=“Handler for POST /v1.23/containers/create returned error: No such image: openproject:latest”
Jun 16 16:27:32 pmo.my_owndomain.com.br docker2738: time=“2016-06-16T16:27:32.728538180-03:00” level=error msg=“Attempting next endpoint for pull after error: unauthorized: authentication required”
Jun 16 16:27:33 pmo.my_owndomain.com.br docker2738: time=“2016-06-16T16:27:33.735191486-03:00” level=error msg=“Not continuing with pull after error: Error: image library/openproject not found”
Has anyone here ever had this problem? How do I fix it?
Marcel Almeida.
Replies (1)
Hello,
I can solved this problem add at the end of command the argument “openproject/community:5.0”, like this:
docker run -d \
After, I restarted the openproject:
docker restart openproject
But I can’t send any notifications yet. When I trying send a test e-mail, the system returns a message error (attached).
Has anyone here that can share a solution for this problem?
Best regards,
Marcel Almeida