-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
46 lines (43 loc) · 865 Bytes
/
docker-compose.yaml
File metadata and controls
46 lines (43 loc) · 865 Bytes
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
version: '3'
services:
# Cachet 2.3.x
cachet23:
image: cachethq/docker:2.3.15
env_file:
- cachet23.env
ports:
- "8000:8000"
depends_on:
- cachet23_db
cachet23_db:
image: mariadb:10.5
volumes:
- db23:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=status
- MYSQL_USER=test
- MYSQL_PASSWORD=test
# Cachet 2.4.x
# Assumes you cloned https://github.com/CachetHQ/Docker
cachet24:
build:
context: ../Docker
env_file:
- cachet24.env
ports:
- "8080:8000"
depends_on:
- cachet24_db
cachet24_db:
image: mariadb:10.5
volumes:
- db24:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=status
- MYSQL_USER=test
- MYSQL_PASSWORD=test
volumes:
db23:
db24: