Revision [23568]
This is an old revision of Wikka-Docker-Faster made by OeMunoz on 2017-08-10 22:12:08.
Wikka Docker for the impatient
docker-compose.yml
version: '2'
services:
mariadb:
image: mariadb
hostname: mariadb
environment:
- MYSQL_ROOT_PASSWORD=root-password
- MYSQL_DATABASE=wikka
- MYSQL_USER=wikka
- MYSQL_PASSWORD=wikka-password
volumes:
- $PWD/mysql:/var/lib/mysql
wiki:
image: oems/wikkawiki:1.4.0-pre_lite
links:
- mariadb
ports:
- '80:80'
services:
mariadb:
image: mariadb
hostname: mariadb
environment:
- MYSQL_ROOT_PASSWORD=root-password
- MYSQL_DATABASE=wikka
- MYSQL_USER=wikka
- MYSQL_PASSWORD=wikka-password
volumes:
- $PWD/mysql:/var/lib/mysql
wiki:
image: oems/wikkawiki:1.4.0-pre_lite
links:
- mariadb
ports:
- '80:80'
Run the docker-compose on the same directory of the docker-compose.yml file.
docker-compose up
CategoryLinux Wikka-Docker