d43bc898 by Yokihito Oki

joomla!の検証用テンプレ作成

0 parents
app
data
\ No newline at end of file
# Joomla!
## 概要
joomla!で色々検証する用のテンプレ
## 起動
```
# フォアグラウンド起動
$ docker-compose up
# バックグラウンド起動
$ docker-compose up -d
```
## 停止
```
# フォアグラウンド停止
Control + c
# バックグラウンド停止
$ docker-compose down
```
\ No newline at end of file
version: '3.1'
services:
joomla:
image: joomla:3.9.14
restart: always
links:
- joomladb:mysql
ports:
- 8888:80
volumes:
- "./app/:/var/www/html"
environment:
JOOMLA_DB_HOST: joomladb
JOOMLA_DB_PASSWORD: example
joomladb:
image: mariadb:10.4.11
ports:
- 3306:3306
volumes:
- ./data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: example
command:
- "--character-set-server=utf8"
- "--collation-server=utf8_unicode_ci"
\ 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!