forked from Intermesh/docker-groupoffice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
35 lines (32 loc) · 773 Bytes
/
compose.yaml
File metadata and controls
35 lines (32 loc) · 773 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
services:
groupoffice:
image: intermesh/groupoffice:25.0
restart: always
ports:
- "9090:80"
links:
- db
volumes:
- "godata:/var/lib/groupoffice:cached"
- "goetc:/etc/groupoffice:cached"
# - "gostudio:/usr/local/share/groupoffice/go/modules/studio:cached"
- ./src/studio:/usr/local/share/groupoffice/go/modules/studio
# Example for ssl
# - "./config/ssl/groupoffice:/etc/ssl/groupoffice"
env_file:
- ./db.env
db:
image: mariadb:11.1.2
restart: always
env_file:
- ./db.env
environment:
MYSQL_ROOT_PASSWORD: groupoffice
MARIADB_AUTO_UPGRADE: 1
volumes:
- "dbdata:/var/lib/mysql:cached"
volumes:
godata:
goetc:
#gostudio:
dbdata: