-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
47 lines (44 loc) · 939 Bytes
/
docker-compose.dev.yaml
File metadata and controls
47 lines (44 loc) · 939 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
47
services:
nc33:
build:
context: .
dockerfile: Dockerfile.dev
args:
NC_VERSION: 33
ports:
- 8033:8080
volumes:
- nc33-config:/nextcloud/config
- nc33-data:/nextcloud/data
- ./:/nextcloud/apps/openincryptpad:ro
nc32:
build:
context: .
dockerfile: Dockerfile.dev
args:
NC_VERSION: 32
ports:
- 8032:8080
volumes:
- nc32-config:/nextcloud/config
- nc32-data:/nextcloud/data
- ./:/nextcloud/apps/openincryptpad:ro
nc31:
build:
context: .
dockerfile: Dockerfile.dev
args:
NC_VERSION: 31
ports:
- 8031:8080
volumes:
- nc31-config:/nextcloud/config
- nc31-data:/nextcloud/data
- ./:/nextcloud/apps/openincryptpad:ro
volumes:
nc33-config:
nc33-data:
nc32-config:
nc32-data:
nc31-config:
nc31-data: