{"id":27160998,"url":"https://github.com/flownative/docker-base","last_synced_at":"2026-04-26T23:31:13.939Z","repository":{"id":142961429,"uuid":"232279580","full_name":"flownative/docker-base","owner":"flownative","description":"Flownative Docker Base Image","archived":false,"fork":false,"pushed_at":"2025-02-17T16:12:47.000Z","size":230,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"bookworm","last_synced_at":"2025-04-09T00:08:26.126Z","etag":null,"topics":["docker-image"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flownative.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-07T08:31:57.000Z","updated_at":"2025-02-17T16:03:36.000Z","dependencies_parsed_at":"2024-01-11T19:39:16.953Z","dependency_job_id":"edd64bc2-0593-4b57-852f-ae7d60bee74d","html_url":"https://github.com/flownative/docker-base","commit_stats":null,"previous_names":[],"tags_count":108,"template":false,"template_full_name":null,"purl":"pkg:github/flownative/docker-base","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Fdocker-base","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Fdocker-base/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Fdocker-base/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Fdocker-base/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flownative","download_url":"https://codeload.github.com/flownative/docker-base/tar.gz/refs/heads/bookworm","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Fdocker-base/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32317162,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"ssl_error","status_checked_at":"2026-04-26T23:26:25.802Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker-image"],"created_at":"2025-04-09T00:08:32.810Z","updated_at":"2026-04-26T23:31:13.923Z","avatar_url":"https://github.com/flownative.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Nightly Builds](https://github.com/flownative/docker-base/workflows/Nightly%20Builds/badge.svg)\n![Release to Docker Registries](https://github.com/flownative/docker-base/workflows/Release%20to%20Docker%20Registries/badge.svg)\n\n# Flownative Docker Base Image\n\nA Docker base image, derived from [bitnami/minideb](https://github.com/bitnami/minideb),\nintegrated into the build pipeline of Flownative Docker images.\n\n## Init\n\nThis image contains a simple mechanism for automatic execution of\ninit-scripts when the container is started.\n\nWhen included, the `init.sh` script is used as an ENTRYPOINT of your\nDocker container, it scans the directory\n`/opt/flownative/init/etc/init.d` for `.sh` files. The scripts are then\ncalled in an alphabetical order, so it makes sense to prefix filenames\nwith a number, if the order is important.\n\nThe `init.d` directory might contain files like these:\n\n```\n3_test.sh\n10_another_test.sh\n20_yet_another_test.sh\n```\n\n## Supervisor\n\nThis image contains [Supervisor](http://supervisord.org/), a tool for\nrunning and watching Linux processes. We use Supervisor in extensions of\nthis image for running services like Nginx, PHP-FPM, SSHD and the like.\n\nSupervisor is started by calling the respective functions of the\n`supervisor.sh` bash library:\n\n```bash\n. \"${FLOWNATIVE_LIB_PATH}/supervisor.sh\"\n\neval \"$(supervisor_env)\"\nsupervisor_initialize\nsupervisor_start\n\ntrap 'supervisor_stop' SIGINT SIGTERM\nsupervisor_pid=$(supervisor_get_pid)\n\n# We can't use \"wait\" because supervisord is not a direct child of\n# this shell:\nwhile [ -e \"/proc/${supervisor_pid}\" ]; do sleep 1.1; done\n```\nTake a look at the `init.sh` script used as an ENTRYPOINT in this image\nfor more context.\n\nSupervisor will look for configuration files in\n`/opt/flownative/supervisor/etc/conf.d/`. Add your own files in order to\nconfigure `supervisord` and use `supervisorctl` to control it.\n\n## syslog-ng\n\nThis image contains [syslog-ng](https://github.com/syslog-ng/syslog-ng),\na tool for processing logs of Linux processes. We use syslog-ng for\ncollecting logs from the application(s) running in the container and\noutput them to the console. This way you can see all logs via `docker\nlogs` or through other tools fetching logs from STDOUT / STDERR and\nfurther log files.\n\nThe application extending this image may add additional syslog-ng\nconfiguration by adding a file to `$SYSLOG_BASE_PATH/etc/conf.d`. The\nfile should be named after the application (for example \"nginx.conf\").\n\nNote that the include file must not be a complete syslog-ng\nconfiguration file, which means that if it starts with a \"@version\"\nstatement, it will not be included (see\n[documentation](https://www.syslog-ng.com/technical-documents/doc/syslog-ng-open-source-edition/3.26/administration-guide/16#TOPIC-1430957)).\n\nWithin configuration files you can easily use global environment\nvariables using the backtick syntax:\n\n```\n    source s_nginx_common {\n           file(\"`FLOWNATIVE_LOG_PATH`/nginx_*.log\");\n    };\n```\n\nYou can check the actual \"rendered\" configuration by running the\nfollowing command from a bash within the container:\n\n```\n    syslog-ng-ctl config -p\n```\n\n## Building this image\n\nBuild this image with `docker build`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflownative%2Fdocker-base","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflownative%2Fdocker-base","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflownative%2Fdocker-base/lists"}