Revision history for Wikka-Docker-Faster
Additions:
======**Wikka on Docker for the impatient**======
Deletions:
Additions:
======**Wikka for the impatient**======
Deletions:
Additions:
[[Wikka-Docker]]
Deletions:
Additions:
====WikkaWiki on 4 steps:====
Additions:
1. Check if the next deb are on your system:
Deletions:
====1. Check if the next deb are on your system:====
Additions:
{{toc level="2"}}
Deletions:
Additions:
====1. Check if the next deb are on your system:====
Deletions:
Additions:
{{toc level=2}}
Deletions:
Additions:
{{toc 1}}
Deletions:
Additions:
=====1. Check if the next deb are on your system:=====
Deletions:
Additions:
{{toc}}
Additions:
3. Copy this file (exactly!)
4. Start the docker:
4. Start the docker:
Additions:
2. Install these debs:
Deletions:
Additions:
1. Check if the next deb are on your system:
1. Install these debs:
1. Install these debs:
No Differences
Additions:
%%(bash;Install on Ubuntu)
apt-cache search docker| grep -E "compose|^docker-engine"
%%%%
docker-compose - Punctual, lightweight development environments using Docker
docker-engine - Docker: the open-source application container engine
%%(bash;Install on Ubuntu)
apt-get install docker-engine docker-compose
%%%%
apt-cache search docker| grep -E "compose|^docker-engine"
%%%%
docker-compose - Punctual, lightweight development environments using Docker
docker-engine - Docker: the open-source application container engine
%%(bash;Install on Ubuntu)
apt-get install docker-engine docker-compose
%%%%
Additions:
%%(text;docker-compose.yml)
%%(bash;Run the docker-compose on the same directory of the docker-compose.yml file.)
%%(bash;Run the docker-compose on the same directory of the docker-compose.yml file.)
Deletions:
%%(bash)
Additions:
%%(bash)
docker-compose up
docker-compose up
Additions:
%%(text)
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'
%%
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'
%%