-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose-insecure.yml
74 lines (65 loc) · 1.24 KB
/
docker-compose-insecure.yml
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
63
64
65
66
67
68
69
70
71
72
73
74
version: '3'
services:
db:
container_name: nextcloud-mariadb
build: ./db
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
environment:
- MYSQL_DATABASE=nextcloud
env_file:
- ./env/db.env
restart: always
volumes:
- db:/var/lib/mysql
- dbtmp:/tmp
redis:
container_name: nextcloud-redis
image: redis:alpine
restart: always
volumes:
- rediscache:/data
app:
container_name: nextcloud-app
build: ./app
depends_on:
- db
- redis
environment:
# database
- MYSQL_DATABASE=nextcloud
- MYSQL_HOST=db
# redis
- REDIS_HOST=redis
env_file:
- ./env/db.env
- ./env/proxy.env
restart: always
volumes:
- nextcloud:/var/www/html
cron:
container_name: nextcloud-cron
build: ./app/cron
depends_on:
- db
- redis
entrypoint: /cron.sh
restart: always
volumes:
- nextcloud:/var/www/html
web:
container_name: nextcloud-nginx
build: ./web
depends_on:
- app
env_file:
- ./env/proxy.env
ports:
- "8080:80"
restart: always
volumes:
- nextcloud:/var/www/html:ro
volumes:
db:
dbtmp:
rediscache:
nextcloud: