-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
57 lines (52 loc) · 1.38 KB
/
docker-compose.yaml
File metadata and controls
57 lines (52 loc) · 1.38 KB
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
---
volumes:
mariadb:
nextcloud:
networks:
frontend:
backend:
services:
mariadb:
image: mariadb:10.5
restart: always
networks:
- backend
volumes:
- mariadb:/var/lib/mysql
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: rootpassword
MYSQL_DATABASE: nextcloud
MYSQL_USER: nextcloud
MYSQL_PASSWORD: nextcloud
nextcloud:
build: ./docker/nextcloud
restart: always
depends_on:
- mariadb
networks:
- frontend
- backend
extra_hosts:
- host.docker.internal:host-gateway
volumes:
- nextcloud:/var/www/html
- ../adminly_core:/var/www/html/custom_apps/adminly_core
- ../adminly_dashboard:/var/www/html/custom_apps/adminly_dashboard
- ../adminly_clients:/var/www/html/custom_apps/adminly_clients
- ../adminly_calendar:/var/www/html/custom_apps/calendar
- ../Appointments:/var/www/html/custom_apps/appointments
- ../timemanager:/var/www/html/custom_apps/timemanager
- ../spreed:/var/www/html/custom_apps/spreed
- ../adminly_notifications:/var/www/html/apps/notifications
ports:
- "80:80"
- "443:443"
environment:
MYSQL_DATABASE: nextcloud
MYSQL_USER: nextcloud
MYSQL_PASSWORD: nextcloud
MYSQL_HOST: mariadb:3306
NEXTCLOUD_ADMIN_USER: testsson
NEXTCLOUD_ADMIN_PASSWORD: test