The Sykes Cottages Docker Node images
10K+
We use a variety of Node containers at Sykes Cottages across most of our platforms, but due to a lot of bespoke requirements in our applications using the official Node images typically required a monalithic Dockerfile to support the application. All of our Node images are based off the Base Sykes image which uses the official Ubuntu Docker image. We opted for this path to utilise aptitude so we could manage packages easier and utilise the package integrity verification that comes with apititude.
All our images have support for:
linux/amd64linux/arm64/v8Obtaining platform specific architectures:
docker pull --platform=<ARCHITECTURE> sykescottages/node:<VERSION>
Testing you have the right architecture:
docker run -it --platform=<ARCHITECTURE> sykescottages/node:<VERSION> arch
sykescottages/node:4sykescottages/node:5sykescottages/node:6sykescottages/node:7sykescottages/node:8sykescottages/node:9sykescottages/node:10sykescottages/node:11sykescottages/node:12sykescottages/node:13sykescottages/node:14sykescottages/node:15sykescottages/node:16sykescottages/node:17sykescottages/node:18sykescottages/node:19sykescottages/node:20sykescottages/node:21For better visibility of packages there is now an included aptitude itinerary with each tag, this is located in the corresponding folder to the tag. This will give better clarity on package version changes and be reflected in the git history.
Pulling an image:
docker pull sykescottages/node:version
Running a container:
docker run -it sykescottages/node:version
Building from this image simply reference it as part of your Dockerfile:
FROM sykescottages/node:version
# ... Your configuration
All testing is done in the form of a SUT containers which is run by the Docker Hub (see Automated repository tests for more information) and runs a variety of shell scripts.
Contributions are welcome, but please adhere to the CONTRIBUTION.MD. Also, if you could ensure that there are tests with every modification of the Dockerfiles to verify that your changes work.
Content type
Image
Digest
sha256:4d403f6fe…
Size
337.9 MB
Last updated
2 months ago
docker pull sykescottages/node