{"id":20172128,"url":"https://github.com/elabftw/elabimg","last_synced_at":"2026-03-01T16:05:16.013Z","repository":{"id":31985055,"uuid":"35555482","full_name":"elabftw/elabimg","owner":"elabftw","description":"Official eLabFTW Docker image","archived":false,"fork":false,"pushed_at":"2026-03-01T14:14:33.000Z","size":3139,"stargazers_count":24,"open_issues_count":1,"forks_count":42,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-03-01T14:46:06.373Z","etag":null,"topics":["docker","docker-container","elabftw","mysql","nginx","php"],"latest_commit_sha":null,"homepage":"https://www.elabftw.net","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elabftw.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":"FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"liberapay":"NicolasCARPi","github":"NicolasCARPi"}},"created_at":"2015-05-13T14:57:08.000Z","updated_at":"2026-03-01T10:46:27.000Z","dependencies_parsed_at":"2024-01-02T05:23:32.926Z","dependency_job_id":"19bcc3ee-9393-4c40-b7aa-ba1deaa64ffe","html_url":"https://github.com/elabftw/elabimg","commit_stats":null,"previous_names":[],"tags_count":259,"template":false,"template_full_name":null,"purl":"pkg:github/elabftw/elabimg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elabftw%2Felabimg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elabftw%2Felabimg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elabftw%2Felabimg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elabftw%2Felabimg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elabftw","download_url":"https://codeload.github.com/elabftw/elabimg/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elabftw%2Felabimg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29974338,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T15:41:30.362Z","status":"ssl_error","status_checked_at":"2026-03-01T15:37:07.343Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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","docker-container","elabftw","mysql","nginx","php"],"created_at":"2024-11-14T01:29:05.530Z","updated_at":"2026-03-01T16:05:15.988Z","avatar_url":"https://github.com/elabftw.png","language":"HTML","funding_links":["https://liberapay.com/NicolasCARPi","https://github.com/sponsors/NicolasCARPi"],"categories":[],"sub_categories":[],"readme":"# Description\n\nThis Docker image is for [eLabFTW](https://www.elabftw.net). It runs four services:\n\n* nginx: the webserver\n* php-fpm: to handle requests to PHP files\n* chronos: executes tasks on a schedule (similar to a cronjob)\n* invoker: executes tasks asynchronously (useful for exports for instance)\n\nThese services are managed by s6-overlay and are all heavily customized for running eLabFTW.\n\n# Tags\n\nTags, in the context of Docker images, are what comes after the image name (`elabftw/elabimg`), separated by a colon. If you leave it empty, it defaults to `latest`, which will point to the latest stable release. But it is recommended to explicitly define the version you wish to run, e.g.: `elabftw/elabimg:5.3.4`.\n\nWhen defining which image version to use, you can use different tags:\n\n* `x.y.z`: the actual explicit version: recommended\n* `stable`: the latest stable version\n* `latest`: the latest stable version\n* `edge`: the latest version, can be a stable version or an alpha or beta, whatever is present on `master` branch of eLabFTW\n* `hypernext`: this is the dev version, built on a \"push\" event as well as on a daily schedule, it must never be deployed outside of a testing environment\n\n# Building this image\n\nSet the `ELABFTW_VERSION` build arg to a tagged release or a branch. The latest stable version can be found [here](https://github.com/elabftw/elabftw/releases/latest).\n\n~~~bash\ndocker build --build-arg ELABFTW_VERSION=X.Y.Z -t elabftw/elabimg:X.Y.Z .\n~~~\n\nFor dev, add `--build-arg BUILD_ALL=0` to skip the installation of dependencies and building of assets, because the folder will be bind-mounted to your host anyway.\n\n# Usage\n\nAn example configuration file for docker-compose can be fetched like this:\n\n~~~bash\ncurl -so docker-compose.yml \"https://get.elabftw.net/?config\"\n~~~\n\nAfter downloading the configuration file, open it in your preferred text editor to modify settings as necessary.\n\nFor usage of eLabFTW, see [documentation](https://doc.elabftw.net).\n\n## Reloading services\n\nIf for some reason you wish to reload a service without restarting the container (for instance when trying configuration changes), you can use ``reload``:\n\n~~~bash\n# reload php and nginx\nreload\n# reload only php\nreload php\n# reload only nginx\nreload nginx\n~~~\n\n## Deleting GitHub build cache\n\nIf there is a CVE fixed upstream, delete build cache with:\n\n~~~bash\ngh cache delete --all\n~~~\n\nRequires GitHub CLI: https://cli.github.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felabftw%2Felabimg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felabftw%2Felabimg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felabftw%2Felabimg/lists"}