Apify base Docker images
Public Docker images for Apify Actor serverless platform (https://docs.apify.com/actor)
The sources for the images are present in subdirectories that are named as the corresponding
Docker image. For example, the node-basic directory corresponds to the
apify/actor-node-basic Docker image.
The images are using the following tags:
| Tag | Description |
|---|---|
latest |
Well-tested production version of the image. |
beta |
Development version of the image. |
Maintenance
In order to build and publish a new version of the Docker images, first ensure you're logged in to your Docker Hub account by running:
docker loginThen build the Docker image:
./build.sh node-basicAfter the Docker image is well tested, it can be pushed with the latest tag:
docker push apify/actor-node-basic:latestThen you can remove the images from your computer:
./clean.shIMPORTANT
If the beta images were built by Travis CI and are already available on Docker Hub
but not your local computer, then to publish them with the latest you need to
run the following script:
./publish_beta_as_latest.sh node-basicTo do the same for all images, run:
./publish_all_beta_as_latest.sh