nuxsmin / docker-syspass

Docker stuff for running sysPass on Docker
GNU General Public License v3.0
39 stars 21 forks source link

USE_SSL variable is not builded on Docker Hub #32

Closed Ajtak closed 4 years ago

Ajtak commented 5 years ago

I'm check latest build on DockerHub, but USE_SSL variable in configuration file not included. Its possible rebuild on Docker Hub? Thanks

Commit source 9f422e3 on Docker Hub not contains USE_SSL variable.

image

jklaiber commented 4 years ago

Have the same problem here, would be nice if the environment variable will be available, that will also fix various problems with reverse proxies...

JohannesHoffmann commented 4 years ago

Have the same issue.

Temporary workaround: Disable apache ssl mod manually and save the containers state.

docker exec containername a2dismod ssl

docker ps -aqf "containername" | xargs -i docker commit {} syspass/syspass:3.1.0

nuxsmin commented 4 years ago

Hello, sorry for the late reply...

You could set it from the command line by using -e USE_SSL=[0|1]

Regards