Skip to content

Commit

Permalink
Run update.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
docker-library-bot committed Nov 1, 2023
1 parent c405417 commit 1e1865e
Show file tree
Hide file tree
Showing 7 changed files with 49 additions and 49 deletions.
2 changes: 1 addition & 1 deletion aerospike/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ For more, see [How do I get a 2 nodes Aerospike cluster running quickly in Docke

## Image Versions

These images are based on [debian:strech-slim](https://hub.docker.com/_/debian).
These images are based on [debian:*-slim](https://hub.docker.com/_/debian).

### ee-[version]

Expand Down
2 changes: 1 addition & 1 deletion bash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`devel-20231023`, `devel`, `devel-20231023-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/069d8927e1b5de80f948b58b6b2b615fd82456c0/devel/Dockerfile)
- [`devel-20231030`, `devel`, `devel-20231030-alpine3.18`, `devel-alpine3.18`](https://github.com/tianon/docker-bash/blob/16576ce16333b5ceb07045b2d4114d1594a3a70e/devel/Dockerfile)
- [`5.2.15`, `5.2`, `5`, `latest`, `5.2.15-alpine3.18`, `5.2-alpine3.18`, `5-alpine3.18`, `alpine3.18`](https://github.com/tianon/docker-bash/blob/fa56f3014aa4901e889d12910a711d1adc0fc6a6/5.2/Dockerfile)
- [`5.1.16`, `5.1`, `5.1.16-alpine3.18`, `5.1-alpine3.18`](https://github.com/tianon/docker-bash/blob/24c782c1b77287b0cea03a00ba43498276bf8182/5.1/Dockerfile)
- [`5.0.18`, `5.0`, `5.0.18-alpine3.18`, `5.0-alpine3.18`](https://github.com/tianon/docker-bash/blob/eb30d9e65ce00810fcc7e984f5a7d554433aaa34/5.0/Dockerfile)
Expand Down
4 changes: 2 additions & 2 deletions dart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`3.1.5-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.5`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/2e7e751f174af125f91842b5d06450b5f1d94fbb/stable/bookworm/Dockerfile)
- [`3.2.0-210.3.beta-sdk`, `beta-sdk`, `3.2.0-210.3.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/2e7e751f174af125f91842b5d06450b5f1d94fbb/beta/bookworm/Dockerfile)
- [`3.1.5-sdk`, `3.1-sdk`, `3-sdk`, `stable-sdk`, `sdk`, `3.1.5`, `3.1`, `3`, `stable`, `latest`](https://github.com/dart-lang/dart-docker/blob/241f70ba23e6daa67dff9dedd525dece53e93fab/stable/bookworm/Dockerfile)
- [`3.2.0-210.4.beta-sdk`, `beta-sdk`, `3.2.0-210.4.beta`, `beta`](https://github.com/dart-lang/dart-docker/blob/241f70ba23e6daa67dff9dedd525dece53e93fab/beta/bookworm/Dockerfile)

# Quick reference (cont.)

Expand Down
60 changes: 30 additions & 30 deletions jetty/README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions mariadb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,9 @@ This is documented on [MariaDB Knowledge Base : Adding Plugins to the Docker Off
- [MariaDB MaxScale](https://hub.docker.com/r/mariadb/maxscale/tags)
- [MariaDB ColumnStore](https://hub.docker.com/r/mariadb/columnstore/tags)

# Componse File Examples
# Compose File Examples

Example compose files using this `mariadb` are located in %%GITHUB-REPO% in the `/examples` folder.
Example compose files using this `mariadb` are located in https://github.com/MariaDB/mariadb-docker in the `/examples` folder.

# License

Expand Down
24 changes: 12 additions & 12 deletions monica/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ where `monica` is the name of the service in your `docker-compose.yml` file.

## Configuration using environment variables

The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/main/.env.example) for common used variables you should setup.
The Monica image will use environment variables to setup the application. See [Monica documentation](https://github.com/monicahq/monica/blob/4.x/.env.example) for common used variables you should setup.

## Running the image with docker-compose

See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/master/.examples).
See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples).

---

Expand All @@ -128,7 +128,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup.
1. Create a `docker-compose.yml` file

```yaml
version: "3.4"
version: "3.9"

services:
app:
Expand All @@ -138,7 +138,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup.
ports:
- 8080:80
environment:
- APP_KEY=
- APP_KEY= # Generate with `echo -n 'base64:'; openssl rand -base64 32`
- DB_HOST=db
- DB_USERNAME=monica
- DB_PASSWORD=secret
Expand All @@ -147,7 +147,7 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup.
restart: always

db:
image: mysql:5.7
image: mariadb:11
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=true
- MYSQL_DATABASE=monica
Expand Down Expand Up @@ -184,28 +184,28 @@ Make sure to pass in values for `APP_KEY` variable before you run this setup.

When using FPM image, you will need another container with a webserver to proxy http requests. In this example we use nginx with a basic container to do this.

1. Download `nginx.conf` and `Dockerfile` file for nginx image. An example can be found on the [`example section`](https://github.com/monicahq/docker/blob/master/.examples/supervisor/fpm/web/)
1. Download `nginx.conf` and `Dockerfile` file for nginx image. An example can be found on the [`example section`](https://github.com/monicahq/docker/blob/main/.examples/full/fpm/web/)

```sh
mkdir web
curl -sSL https://raw.githubusercontent.com/monicahq/docker/master/.examples/nginx-proxy/web/nginx.conf -o web/nginx.conf
curl -sSL https://raw.githubusercontent.com/monicahq/docker/master/.examples/nginx-proxy/web/Dockerfile -o web/Dockerfile
curl -sSL https://raw.githubusercontent.com/monicahq/docker/main/.examples/full/web/nginx.conf -o web/nginx.conf
curl -sSL https://raw.githubusercontent.com/monicahq/docker/main/.examples/full/web/Dockerfile -o web/Dockerfile
```

The `web` container image should be pre-build before each deploy with: `docker-compose build`.

2. Create a `docker-compose.yml` file

```yaml
version: "3.4"
version: "3.9"

services:
app:
image: monica:fpm
depends_on:
- db
environment:
- APP_KEY=
- APP_KEY= # Generate with `echo -n 'base64:'; openssl rand -base64 32`
- DB_HOST=db
- DB_USERNAME=monica
- DB_PASSWORD=secret
Expand All @@ -224,7 +224,7 @@ When using FPM image, you will need another container with a webserver to proxy
restart: always

db:
image: mysql:5.7
image: mariadb:11
environment:
- MYSQL_RANDOM_ROOT_PASSWORD=true
- MYSQL_DATABASE=monica
Expand Down Expand Up @@ -267,7 +267,7 @@ One way to expose your Monica instance is to use a proxy webserver from your hos

### Using a proxy webserver container

See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/master/.examples) to show how to a proxy webserver with ssl capabilities.
See some examples of docker-compose possibilities in the [example section](https://github.com/monicahq/docker/blob/main/.examples) to show how to a proxy webserver with ssl capabilities.

# Image Variants

Expand Down
2 changes: 1 addition & 1 deletion sl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ WARNING:

# Supported tags and respective `Dockerfile` links

- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/6774a5c2862153082a4f2271aa6073b5bd823e6b/sl7/Dockerfile)
- [`7`, `latest`](https://github.com/scientificlinux/sl-docker/blob/bf1a75fd29d02465952d829b66a5f9081113555e/sl7/Dockerfile)

# Quick reference (cont.)

Expand Down

0 comments on commit 1e1865e

Please sign in to comment.