Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bitnami/appsmith/1/debian-12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith"
ARG TARGETARCH

LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2026-04-08T18:16:16Z" \
org.opencontainers.image.created="2026-04-15T09:14:07Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/appsmith/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/appsmith" \
Expand All @@ -29,9 +29,9 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
COMPONENTS=( \
"render-template-1.0.9-164-linux-${OS_ARCH}-debian-12" \
"python-3.14.4-0-linux-${OS_ARCH}-debian-12" \
"python-3.14.4-5-linux-${OS_ARCH}-debian-12" \
"node-20.20.2-0-linux-${OS_ARCH}-debian-12" \
"nginx-1.29.8-0-linux-${OS_ARCH}-debian-12" \
"nginx-1.30.0-0-linux-${OS_ARCH}-debian-12" \
"mongodb-shell-2.8.2-0-linux-${OS_ARCH}-debian-12" \
"jre-17.0.18-10-1-linux-${OS_ARCH}-debian-12" \
"appsmith-1.98.0-0-linux-${OS_ARCH}-debian-12" \
Expand All @@ -55,7 +55,7 @@ RUN /opt/bitnami/scripts/nginx/postunpack.sh
RUN /opt/bitnami/scripts/appsmith/postunpack.sh
ENV APP_VERSION="1.98.0" \
BITNAMI_APP_NAME="appsmith" \
IMAGE_REVISION="2" \
IMAGE_REVISION="3" \
NGINX_HTTPS_PORT_NUMBER="" \
NGINX_HTTP_PORT_NUMBER="" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/python/bin:/opt/bitnami/node/bin:/opt/bitnami/nginx/sbin:/opt/bitnami/mongodb/bin:/opt/bitnami/java/bin:$PATH"
Expand Down
28 changes: 9 additions & 19 deletions bitnami/appsmith/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ Trademarks: This software listing is packaged by Bitnami. The respective tradema
docker run -it --name appsmith bitnami/appsmith:latest
```

## Using `docker-compose.yml`

The docker-compose.yaml file of this container can be found in the [Bitnami Containers repository](https://github.com/bitnami/containers/).

[https://github.com/bitnami/containers/tree/main/bitnami/appsmith/docker-compose.yml](https://github.com/bitnami/containers/tree/main/bitnami/appsmith/docker-compose.yml)

Please be aware this file has not undergone internal testing. Consequently, we advise its use exclusively for development or testing purposes. For production-ready deployments, we highly recommend utilizing its associated [Bitnami Helm chart](https://github.com/bitnami/charts/tree/main/bitnami/appsmith).

## Why use Bitnami Secure Images?

Those are hardened, minimal CVE images built and maintained by Bitnami. Bitnami Secure Images are based on the cloud-optimized, security-hardened enterprise [OS Photon Linux](https://vmware.github.io/photon/). Why choose BSI images?
Expand All @@ -36,10 +44,6 @@ Learn more about the Bitnami tagging policy and the difference between rolling t

The Bitnami Appsmith Docker image is only available to [Bitnami Secure Images](https://bitnami.com) customers.

## Using `docker-compose.yaml`

Please be aware this file has not undergone internal testing. Consequently, we advise its use exclusively for development or testing purposes. For production-ready deployments, we highly recommend utilizing its associated [Bitnami Helm chart](https://github.com/bitnami/charts/tree/main/bitnami/appsmith).

## Configuration

The following section describes the supported environment variables
Expand Down Expand Up @@ -95,8 +99,6 @@ The following tables list the main variables you can set.
| `APPSMITH_DAEMON_USER` | Appsmith daemon system user. | `appsmith` |
| `APPSMITH_DAEMON_GROUP` | Appsmith daemon system group. | `appsmith` |

When you start the Appsmith image, you can adjust the configuration of the instance by passing one or more environment variables either on the docker-compose file or on the `docker run` command line. Please note that some variables are only considered when the container is started for the first time.

#### Run mode

Appsmith supports three running modes:
Expand All @@ -120,19 +122,7 @@ The Bitnami Appsmith Docker image from the [Bitnami Secure Images](https://go-vm

## Logging

The Bitnami Appsmith Docker image sends the container logs to `stdout`. To view the logs:

```console
docker logs wordpress
```

Or using Docker Compose:

```console
docker-compose logs wordpress
```

You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver.
The Bitnami Appsmith Docker image sends the container logs to the `stdout`. You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver.

## License

Expand Down
Loading