{"id":15010606,"url":"https://github.com/nodejs/docker-iojs","last_synced_at":"2025-10-03T20:31:30.851Z","repository":{"id":25929855,"uuid":"29371088","full_name":"nodejs/docker-iojs","owner":"nodejs","description":"Official Docker images from the io.js project","archived":true,"fork":false,"pushed_at":"2017-08-15T01:19:37.000Z","size":132,"stargazers_count":155,"open_issues_count":5,"forks_count":32,"subscribers_count":45,"default_branch":"master","last_synced_at":"2025-01-12T17:26:37.346Z","etag":null,"topics":["iojs","node","nodejs"],"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/nodejs.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}},"created_at":"2015-01-16T22:37:09.000Z","updated_at":"2024-04-08T02:49:58.000Z","dependencies_parsed_at":"2022-08-24T14:17:48.388Z","dependency_job_id":null,"html_url":"https://github.com/nodejs/docker-iojs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nodejs%2Fdocker-iojs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nodejs%2Fdocker-iojs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nodejs%2Fdocker-iojs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nodejs%2Fdocker-iojs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nodejs","download_url":"https://codeload.github.com/nodejs/docker-iojs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234889166,"owners_count":18902347,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["iojs","node","nodejs"],"created_at":"2024-09-24T19:35:03.369Z","updated_at":"2025-10-03T20:31:25.581Z","avatar_url":"https://github.com/nodejs.png","language":"Shell","readme":"# iojs\n\n[![dockeri.co](http://dockeri.co/image/_/iojs)](https://registry.hub.docker.com/_/iojs/)\n\n[![GitHub issues](https://img.shields.io/github/issues/nodejs/docker-iojs.svg \"GitHub issues\")](https://github.com/nodejs/docker-iojs)\n[![GitHub stars](https://img.shields.io/github/stars/nodejs/docker-iojs.svg \"GitHub stars\")](https://github.com/nodejs/docker-iojs)\n\nThe official iojs docker image, made with love by the iojs community.\n\n## What is iojs?\n\n*from [iojs.org/faq.html](https://iojs.org/faq.html)*\n\nio.js is a JavaScript platform built on Chrome's V8 runtime. This project began\nas a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.\n\nWhy? io.js aims to provide faster and predictable release cycles. It currently\nmerges in the latest language, API and performance improvements to V8 while also\nupdating libuv and other base libraries.\n\nThis project aims to continue development of io.js under an \"open governance\nmodel\" as opposed to corporate stewardship.\n\n## Usage\n\n# How to use this image\n\nIf you want to distribute your application on the docker registry, create a\n`Dockerfile` in the root of application directory:\n\n```Dockerfile\nFROM iojs:onbuild\n\n# Expose the ports that your app uses. For example:\nEXPOSE 8080\n```\n\nThen simply run:\n\n```\n$ docker build -t iojs-app\n...\n$ docker run --rm -it iojs-app\n```\n\nTo run a single script, you can mount it in a volume under `/usr/src/app`. From\nthe root of your application directory (assuming your script is named\n`index.js`):\n\n```\n$ docker run -v ${PWD}:/usr/src/app -w /usr/src/app -it --rm iojs iojs index.js\n```\n\n# Image Variants\n\nThe `iojs` images come in many flavors, each designed for a specific use case.\n\n## `iojs:\u003cversion\u003e`\n\nThis is the defacto image. If you are unsure about what your needs are, you\nprobably want to use this one. It is designed to be used both as a throw away\ncontainer (mount your source code and start the container to start your app),\nas well as the base to build other images off of. This tag is based off of\n[`buildpack-deps`](https://registry.hub.docker.com/_/buildpack-deps/).\n`buildpack-deps` is designed for the average user of docker who has many images\non their system. It, by design, has a large number of extremely common Debian\npackages. This reduces the number of packages that images that derive from it\nneed to install, thus reducing the overall size of all images on your system.\n\n## `iojs:onbuild`\n\nThis image makes building derivative images easier. For most use cases,\ncreating a `Dockerfile` in the base of your project directory with the line\n`FROM iojs:onbuild` will be enough to create a stand-alone image for your\nproject.\n\n## `iojs:slim`\n\nThis image does not contain the common packages contained in the default tag\nand only contains the minimal packages needed to run `iojs`. Unless you are\nworking in an environment where *only* the iojs image will be deployed and you\nhave space constraints, we highly recommend using the default image of this\nrepository.\n\n# License\n\n[License information](https://github.com/nodejs/io.js/blob/master/LICENSE) for\nthe software contained in this image. [License\ninformation](https://github.com/nodejs/docker-iojs/blob/master/LICENSE) for the\nio.js Docker project.\n\n# Supported Docker versions\n\nThis image is officially supported on Docker version 1.5.0.\n\nSupport for older versions (down to 1.0) is provided on a best-effort basis.\n\n# People\n\nCurrent Project Team Members:\n\n * [@chorrell](https://github.com/chorrell)\n * [@hmalphettes](https://www.github.com/hmalphettes)\n * [@jlmitch5](https://www.github.com/jlmitch5)\n * [@pesho](https://www.github.com/pesho)\n * [@Starefossen](https://www.github.com/starefossen)\n * [@wblankenship](https://www.github.com/wblankenship)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnodejs%2Fdocker-iojs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnodejs%2Fdocker-iojs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnodejs%2Fdocker-iojs/lists"}