Mattermost Docker container which provides the Mattermost server.
6.8K
Container Source - GitHub Mirror
This is the Conarx Containers Minio image, it provides the Minio S3 server and Minio Client within the same Docker image.
| Provider | Repository |
|---|---|
| DockerHub | allworldit/mattermost |
| Conarx | registry.conarx.tech/containers/mattermost |
All our Docker images are part of our Conarx Containers product line. Images are generally based on Alpine Linux and track the
Alpine Linux major and minor version in the format of vXX.YY.
Images built from source track both the Alpine Linux major and minor versions in addition to the main software component being
built in the format of vXX.YY-AA.BB, where AA.BB is the main software component version.
Our images are built using our Flexible Docker Containers framework which includes the below features...
Please use the project Issue Tracker.
Commercial support for all our Docker images is available from Conarx.
We also provide consulting services to create and maintain Docker images to meet your exact needs.
Additional environment variables are available from...
Mattermost database type, either mariadb, mysql or postgresql.
Database credentials if MATTERMOST_DATABASE_TYPE is set to mariadb or mysql.
Database credentials if MATTERMOST_DATABASE_TYPE is set to postgresql.
Configuration files of note can be found below...
| Path | Description |
|---|---|
| /etc/mattermost/config.d | Mattermost configuration |
| /etc/mattermost/config.d/NN-*.json | Mattermost configuration files |
The configuration file is constructed from files within the config.d directory by lexically merging each file.
One could mount over the config.d directory or mount a configuration file within this directory.
Mattermost config directory.
Mattermost data directory.
Mattermost port 8080 is exposed.
version: '3.9'
services:
mattermost:
image: registry.conarx.tech/containers/mattermost
environment:
- MATTERMOST_DATABASE_TYPE=mysql
- MYSQL_HOST=mariadb-server
- MYSQL_DATABASE=mattermost
- MYSQL_USER=mattermost
- MYSQL_PASSWORD=mattermost
volumes:
- ./data/mattermost:/var/lib/mattermost
networks:
- external
mariadb-server:
image: registry.conarx.tech/containers/mariadb
environment:
- MYSQL_DATABASE=mattermost
- MYSQL_USER=mattermost
- MYSQL_PASSWORD=mattermost
volumes:
- ./data/mariadb:/var/lib/mysql
networks:
- external
networks:
internal:
driver: bridge
enable_ipv6: true
Content type
Image
Digest
sha256:a005ef54c…
Size
169.4 MB
Last updated
4 days ago
docker pull allworldit/mattermost