first commit
0 parents
Showing
2 changed files
with
33 additions
and
0 deletions
.gitignore
0 → 100644
docker-compose.yml
0 → 100644
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 |
-
Please register or sign in to post a comment