You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, It would be great to implement a script that creates/releases Docker Compose configuration files and service images for every new release (and old releases) of Next.js.
Note
For instance, if we start creating Node.js images, it will be challenging to generate them manually for every Node.js version.
Solution
Implement required images (for instance, a Traefik image, and a Node.js image with a tag/version for the web server and another with a tag/version for the cli service).
Implement a script that creates/releases an image for every release of the relevant technology stack and Next.js version.
Note
Take into consideration to implement a HEALTHCHECK command for the created images to avoid having to define it in the Docker Compose file.
Additional information
Check how the node image has a GitHub Action that runs periodically and updates Docker image versions
Description
Implement environment images to solve permission issues and facilitate the execution of install tasks and configuration tasks required by the
CLI.Also, It would be great to implement a script that creates/releases Docker Compose configuration files and service images for every new release (and old releases) of Next.js.
Note
For instance, if we start creating Node.js images, it will be challenging to generate them manually for every Node.js version.
Solution
Implement required images (for instance, a Traefik image, and a Node.js image with a tag/version for the
webserver and another with a tag/version for thecliservice).Implement a script that creates/releases an image for every release of the relevant technology stack and Next.js version.
Note
Take into consideration to implement a
HEALTHCHECKcommand for the created images to avoid having to define it in the Docker Compose file.Additional information
nodeimage has a GitHub Action that runs periodically and updates Docker image versions