78e33ad8 by Yokihito Oki

first commit

0 parents
1 .DS_Store
2 app/*
3 data/*
...\ No newline at end of file ...\ No newline at end of file
1 version: '3.1'
2
3 services:
4 joomla:
5 image: joomla:3.9.14
6 depends_on:
7 - joomladb
8 restart: always
9 links:
10 - joomladb:mysql
11 ports:
12 - 8888:80
13 volumes:
14 - ./app/:/var/www/html:cached
15 environment:
16 JOOMLA_DB_HOST: joomladb
17 JOOMLA_DB_PASSWORD: example
18
19 joomladb:
20 image: mariadb:10.4.11
21 ports:
22 - 3306:3306
23 volumes:
24 - ./data:/var/lib/mysql
25 restart: always
26 environment:
27 MYSQL_ROOT_PASSWORD: example
28 command:
29 - "--character-set-server=utf8"
30 - "--collation-server=utf8_unicode_ci"
...\ No newline at end of file ...\ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!