-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
36 lines (34 loc) · 960 Bytes
/
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
version: '3.8'
services:
joomla:
image: joomla
restart: always
links:
- joomladb:mysql
ports:
- 8080:80
volumes:
- type: bind
source: ./src/PlgSystemNoExtLinks.php
target: /var/www/html/plugins/system/noextlinks/noextlinks.php
consistency: delegated
- type: bind
source: ./src/noextlinks.xml
target: /var/www/html/plugins/system/noextlinks/noextlinks.xml
consistency: delegated
- type: bind
source: ./src/noextlinks.js
target: /var/www/html/plugins/system/noextlinks/noextlinks.js
consistency: delegated
- type: bind
source: ./src/Support
target: /var/www/html/plugins/system/noextlinks/Support
consistency: delegated
environment:
JOOMLA_DB_HOST: joomladb
JOOMLA_DB_PASSWORD: example
joomladb:
image: mysql:5.6
restart: always
environment:
MYSQL_ROOT_PASSWORD: example