Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mollux committed Feb 1, 2024
1 parent 646f289 commit 5fee9c5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 21 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,17 @@ _This version refers to Docker images and examples for Mautic 5. If you would li

all Mautic 5 Docker images follow the following naming stategy.

`v5<minor.patch>-<variant>`
`<major.minor.patch>-<variant>`

There are some defaults if parts are omitted:

* `<minor.patch>` is the latest release patch version in the latest minor version.
* `variant` is apache

some examples:

* `v5`: latest stable version of Mautic 5 of the `apache` variant
* `v5-apache`: latest stable version of Mautic 5 of the `apache` variant
* `v5.0-fpm`: latest version in the 5.0 minor release in the `fpm` variant
* `v5.0.3-apache`: specific point release of the `apache` variant
* `5-apache`: latest stable version of Mautic 5 of the `apache` variant
* `5.0-fpm`: latest version in the 5.0 minor release in the `fpm` variant
* `5.0.3-apache`: specific point release of the `apache` variant

## Variants

Expand Down
6 changes: 3 additions & 3 deletions examples/basic/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
retries: 10

mautic_web:
image: ghcr.io/mollux/docker-mautic:5.x-dev-apache
image: ghcr.io/mollux/docker-mautic:5-apache
links:
- db:mysql
ports:
Expand All @@ -49,7 +49,7 @@ services:
condition: service_healthy

mautic_cron:
image: ghcr.io/mollux/docker-mautic:5.x-dev-apache
image: ghcr.io/mollux/docker-mautic:5-apache
links:
- db:mysql
volumes: *mautic-volumes
Expand All @@ -60,7 +60,7 @@ services:
condition: service_healthy

mautic_worker:
image: ghcr.io/mollux/docker-mautic:5.x-dev-apache
image: ghcr.io/mollux/docker-mautic:5-apache
links:
- db:mysql
volumes: *mautic-volumes
Expand Down
11 changes: 3 additions & 8 deletions examples/fpm-nginx/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,14 @@ services:
- 8002:80

mautic_web:
image: ghcr.io/mollux/docker-mautic:5.x-dev-fpm
image: ghcr.io/mollux/docker-mautic:5-fpm
links:
- db:mysql
volumes: *mautic-volumes

environment:
- DOCKER_MAUTIC_LOAD_TEST_DATA=${DOCKER_MAUTIC_LOAD_TEST_DATA}
- DOCKER_MAUTIC_RUN_MIGRATIONS=${DOCKER_MAUTIC_RUN_MIGRATIONS}
- MYSQL_HOST=${MYSQL_HOST}
- MYSQL_PORT=${MYSQL_PORT}
- MYSQL_DATABASE=${MYSQL_DATABASE}
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
env_file:
- .mautic_env
healthcheck:
Expand All @@ -63,7 +58,7 @@ services:
condition: service_healthy

mautic_cron:
image: ghcr.io/mollux/docker-mautic:5.x-dev-fpm
image: ghcr.io/mollux/docker-mautic:5-fpm
links:
- db:mysql
volumes: *mautic-volumes
Expand All @@ -74,7 +69,7 @@ services:
condition: service_healthy

mautic_worker:
image: ghcr.io/mollux/docker-mautic:5.x-dev-fpm
image: ghcr.io/mollux/docker-mautic:5-fpm
links:
- db:mysql
volumes: *mautic-volumes
Expand Down
8 changes: 4 additions & 4 deletions examples/rabbitmq-worker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ services:
- rabbitmq-data:/var/lib/rabbitmq

mautic_web:
image: ghcr.io/mollux/docker-mautic:5.x-dev-apache
image: ghcr.io/mollux/docker-mautic:5-apache
links:
- db:mysql
ports:
- 8001:80
- 8003:80
volumes: *mautic-volumes

environment:
Expand All @@ -54,7 +54,7 @@ services:
condition: service_healthy

mautic_cron:
image: ghcr.io/mollux/docker-mautic:5.x-dev-apache
image: ghcr.io/mollux/docker-mautic:5-apache
links:
- db:mysql
volumes: *mautic-volumes
Expand All @@ -65,7 +65,7 @@ services:
condition: service_healthy

mautic_worker:
image: ghcr.io/mollux/docker-mautic:5.x-dev-apache
image: ghcr.io/mollux/docker-mautic:5-apache
links:
- db:mysql
volumes: *mautic-volumes
Expand Down

0 comments on commit 5fee9c5

Please sign in to comment.