4.17.1-debian-10-r337 release

This commit is contained in:
Bitnami Bot
2021-02-09 19:56:03 +00:00
parent 8337f41ab7
commit 5c916ac995
4 changed files with 8 additions and 8 deletions

View File

@@ -12,7 +12,7 @@ RUN /build/bitnami-user.sh
RUN /build/install-nami.sh
RUN bitnami-pkg install node-14.15.4-0 --checksum 1c23a75145fc202950f12bd6cb13a9c9b3ac35a3a09d194c105912d2f4d4a8a6
RUN bitnami-pkg install sequelize-cli-5.5.1-0 --checksum 7e572fea880336f69bf7b0b34cd718ee81e7114fe61313acaba12b7a5564cddc
RUN bitnami-pkg install git-2.30.0-0 --checksum da1ad2f9c18b54f8b382df278b29da9b2c870aae3a16783a740b0d9d28c5e0fb
RUN bitnami-pkg install git-2.30.1-0 --checksum 7ebcf1f8694ead1a3c2c070050fbe11e957bae6cf3fbf95e5cc22a057f3ee9e7
RUN bitnami-pkg install express-generator-4.16.1-0 --checksum 09dc5947a709a9bbeb257b17cd13bdb2ca87b08fa17baab4583bdc026badef35
RUN bitnami-pkg install bower-1.8.12-0 --checksum a277b2d091258925c65b62ec562ab4dc0846260161b0da8e64d6531840b093db
RUN bitnami-pkg install tini-0.19.0-1 --checksum 9b1f1c095944bac88a62c1b63f3bff1bb123aa7ccd371c908c0e5b41cec2528d
@@ -22,7 +22,7 @@ RUN bitnami-pkg install express-4.17.1-0 --checksum e90ac676893a1c1edaf31f5bac8b
COPY rootfs /
RUN mkdir -p /dist /app /.npm /.config /.cache /.local && chmod g+rwx /dist /app /.npm /.config /.cache /.local
ENV BITNAMI_APP_NAME="express" \
BITNAMI_IMAGE_VERSION="4.17.1-debian-10-r336" \
BITNAMI_IMAGE_VERSION="4.17.1-debian-10-r337" \
NAMI_PREFIX="/.nami" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-10" \

View File

@@ -22,10 +22,10 @@
},
"git": {
"arch": "amd64",
"digest": "da1ad2f9c18b54f8b382df278b29da9b2c870aae3a16783a740b0d9d28c5e0fb",
"digest": "7ebcf1f8694ead1a3c2c070050fbe11e957bae6cf3fbf95e5cc22a057f3ee9e7",
"distro": "debian-10",
"type": "NAMI",
"version": "2.30.0-0"
"version": "2.30.1-0"
},
"gosu": {
"arch": "amd64",

View File

@@ -12,7 +12,7 @@
# Initialize an unpacked nami module with the `nami initialize` command.
# Command arguments can be specified as function argumnts after the module name.
# `--log-level trace` flag is added to the command if `NAMI_DEBUG` env variable exists.
# The log level can be overriden using the `NAMI_LOG_LEVEL` env variable.
# The log level can be overridden using the `NAMI_LOG_LEVEL` env variable.
#########################
nami_initialize_one() {
local module="${1:?module not specified}"

View File

@@ -28,7 +28,7 @@ $ docker-compose up
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`4`, `4-debian-10`, `4.17.1`, `4.17.1-debian-10-r336`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-express/blob/4.17.1-debian-10-r336/4/debian-10/Dockerfile)
* [`4`, `4-debian-10`, `4.17.1`, `4.17.1-debian-10-r337`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-express/blob/4.17.1-debian-10-r337/4/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/codiad GitHub repo](https://github.com/bitnami/bitnami-docker-codiad).
@@ -71,7 +71,7 @@ Among other things, the above command creates a container service, named `myapp`
After the Node application server has been launched in the `myapp` service, visit http://localhost:3000 in your favorite web browser and you'll be greeted by the default Express welcome page.
In addition to the Express Development Container, the [docker-compose.yml](https://raw.githubusercontent.com/bitnami/bitnami-docker-express/master/docker-compose.yml) file also configures a MongoDB(TM) service to serve as the NoSQL database backend of your Express application.
In addition to the Express Development Container, the [docker-compose.yml](https://raw.githubusercontent.com/bitnami/bitnami-docker-express/master/docker-compose.yml) file also configures a MongoDB® service to serve as the NoSQL database backend of your Express application.
## Executing commands
@@ -112,7 +112,7 @@ Following are a few examples of launching some commonly used Express development
## Connecting to Database
Express by default does not require a database connection to work but we provide a running and configured MongoDB(TM) service and an example file `config/mongodb.js` with some insights for how to connect to it.
Express by default does not require a database connection to work but we provide a running and configured MongoDB® service and an example file `config/mongodb.js` with some insights for how to connect to it.
You can use [Mongoose](http://mongoosejs.com/) ODM in your application to model your application data.