-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (38 loc) · 810 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (38 loc) · 810 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
version: '3.4'
services:
theandromedaproject:
image: theandromedaproject
build:
context: .
dockerfile: ./Dockerfile
nextcloud:
build:
context: ./Nextcloud
dockerfile: Dockerfile
restart: always
ports:
- "8080:80"
volumes:
- nextcloud_data:/var/www/html
container1:
image: container1_image
build:
context: ./Container1
dockerfile: Dockerfile
ports:
- "8081:80"
volumes:
- container1_data:/path/to/data
container2:
image: container2_image
build:
context: ./Container2
dockerfile: Dockerfile
ports:
- "8082:80"
volumes:
- container2_data:/path/to/data
volumes:
nextcloud_data:
container1_data:
container2_data: