-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
62 lines (56 loc) · 1.73 KB
/
docker-compose.yml
File metadata and controls
62 lines (56 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
# Base configuration for the services that are required to run the riffedu mattermost app
# - the image names are the production images that will be retrieved from the rifflearning
# github docker package repository.
# - there are volumes defined in docker-compose.prod.yml that are not defined here because
# they do not apply to the development services which modify these settings
# and are defined in docker-compose.dev.yml
# - use these env vars to specify the tags for the production images to be deployed:
# - RIFFMM_TAG
# - RIFFDATA_TAG
version: '3.7'
services:
edu-mm:
image: 'ghcr.io/rifflearning/edu-docker/riffmm:${RIFFMM_TAG-latest}'
edu-riffdata:
image: 'ghcr.io/rifflearning/riff-server/riffdata:${RIFFDATA_TAG-latest}'
hostname: edu-riffdata
ports:
- '3000:3000'
edu-web:
image: 'ghcr.io/rifflearning/edu-docker/edu-web:latest'
ports:
- '80:80'
- '443:443'
edu-mpns:
image: 'mattermost/mattermost-push-proxy:5.23.0'
ports:
- '8066:8066'
logging:
driver: json-file
options:
max-file: 4
max-size: '5m'
volumes:
- edu-mpns-config:/mattermost-push-proxy/config
- edu-mpns-certs:/mattermost-push-proxy/certs
edu-riffdata-db:
image: mongo:${MONGO_VER-latest}
volumes:
- edu-riffdata-db-data:/data/db
- edu-riffdata-db-configdb:/data/configdb
edu-mm-db:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: mostest
MYSQL_USER: mmuser
MYSQL_PASSWORD: mostest
MYSQL_DATABASE: mattermost_test
volumes:
- edu-mm-db-data:/var/lib/mysql
volumes:
edu-riffdata-db-data:
edu-riffdata-db-configdb:
edu-mm-db-data:
edu-mpns-config:
edu-mpns-certs: