-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
76 lines (68 loc) · 1.6 KB
/
docker-compose.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
75
76
version: '3'
services:
cs-ordini-api:
restart: always
build:
context: ./cs-ordini-api
dockerfile: Dockerfile
networks:
- cs-ordini_network
# Altri parametri come porte, volumi, reti, ecc.
cs-ordini-backup:
restart: always
build:
context: ./cs-ordini-backup
dockerfile: Dockerfile
networks:
- cs-ordini_network
# Altri parametri come porte, volumi, reti, ecc.
cs-ordini-cache:
restart: always
build:
context: ./cs-ordini-cache
dockerfile: Dockerfile
networks:
- cs-ordini_network
# Altri parametri come porte, volumi, reti, ecc.
cs-ordini-cloud:
image: nextcloud:latest
restart: always
ports:
- "8080:80"
volumes:
- nextcloud_data:/var/www/html
networks:
- cs-ordini_network
# Altri parametri di configurazione di Nextcloud
cs-ordini-db:
image: mariadb:latest
restart: always
environment:
MYSQL_ROOT_PASSWORD: example_password
volumes:
- mariadb_data:/var/lib/mysql
networks:
- cs-ordini_network
# Altri parametri di configurazione del database
cs-ordini-log:
restart: always
build:
context: ./cs-ordini-log
dockerfile: Dockerfile
networks:
- cs-ordini_network
# Altri parametri come porte, volumi, reti, ecc.
cs-ordini-vue:
restart: always
build:
context: ./cs-ordini-vue
dockerfile: Dockerfile
networks:
- cs-ordini_network
# Altri parametri come porte, volumi, reti, ecc.
networks:
cs-ordini_network:
driver: bridge
volumes:
mariadb_data:
nextcloud_data: