-
Notifications
You must be signed in to change notification settings - Fork 18
Description
Hi
Great job pulling together openxpki and docker - I guess not too many out there are trying to create their own ca appliance, else would expect a lot more usage.
Have you faced stability issues with your composition?
I'm unable to get a composition that can survive multiple stops and restarts.
mysqldb or apache etc start to get flakey after a point.
Have you considered updating it to remove usage of linking and replace with network?
Also seeing the apache httpd pid issue as well:
web_1 | httpd (pid 29) already running
docker-openxpki_web_1 exited with code 0
Happy to provide feedback and/or fixes if I can help. I noticed you have not added the nginx reverse proxy sample - attached is my simple one if it helps....
user nginx;
worker_processes 1;
events {
worker_connections 1024;
}
http {
server {
# listen 80;
server_name hostname;
location / {
proxy_pass http://10.128.0.3:8080/;
}
}
}