forked from wmde/wikibase-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·74 lines (56 loc) · 2.08 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
#
# This is an example setup script that can be run
# This should work on a WMF labs debian jessie VM
# (as that is what I wrote it on)
# Enjoy!
################################################################
################## Install Docker CE ######################
################################################################
# Update the apt package index:
sudo apt-get update
# Install packages to allow apt to use a repository over HTTPS:
sudo apt-get install --yes \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
# Add Docker’s official GPG key:
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
# Add Docker's stable repository
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \
$(lsb_release -cs) \
stable"
# Update the apt package index:
sudo apt-get update
# Install the latest version of Docker CE
sudo apt-get --yes install docker-ce
# Run Hellow World
sudo docker run hello-world
################################################################
############## Install Docker Compose ####################
################################################################
# Install pip
sudo apt-get install --yes \
python-pip
# Install docker-composer using pip
sudo pip install docker-compose
################################################################
############### Clone wikibase-docker ####################
################################################################
# Install git
sudo apt-get install --yes \
git
# Clone the repo
git clone https://github.com/wmde/wikibase-docker.git
# Switch to the wikibase-docker directory
cd wikibase-docker/
################################################################
###################### Run It! ###########################
################################################################
# Pull the images from docker hub
sudo docker-compose pull
# Run the services
sudo docker-compose up --no-build -d