Skip to content

Docker-composition is not stable #5

@gitsaycat

Description

@gitsaycat

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/;
}
}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions