forked from ProcessMaker/processmaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
after.sh
49 lines (37 loc) · 1.97 KB
/
after.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
#!/bin/sh
# If you would like to do some extra provisioning you may
# add any commands you wish to this file and they will
# be run after the Homestead machine is provisioned.
#
# If you have user-specific configurations you would like
# to apply, you may also create user-customizations.sh,
# which will be run after this script.
# Install docker, which we use to run scripts
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get -y install docker-ce docker-ce-cli containerd.io
# Start the docker service and ensure it runs at startup
sudo systemctl start docker
sudo systemctl enable docker
# Add vagrant to our docker group so that our webapp (which runs under vagrant user) can create docker containers
sudo usermod -a -G docker vagrant
# Restart PHP, to ensure that it picks up the new group membership
sudo service php7.2-fpm restart
# Install echo server which will help run socket.io locally
sudo npm install -g laravel-echo-server
# Copy over appropriate supervisor files to start echo server and horizon
sudo cp /home/vagrant/processmaker/homestead/etc/supervisor/conf.d/* /etc/supervisor/conf.d/
# Reload supervisor to ensure starting echo server and horizon
sudo service supervisor stop
sudo service supervisor start
# Copy the server's ssl certificates so we can trust them on the host machine
mkdir -p /home/vagrant/processmaker/storage/ssl
sudo cp /etc/nginx/ssl/processmaker.local.processmaker.com.crt /home/vagrant/processmaker/storage/ssl
sudo cp /etc/nginx/ssl/processmaker.local.processmaker.com.key /home/vagrant/processmaker/storage/ssl
# Copy over the composer file to our home vagrant user to allow for local package and workflow engine development
sudo cp /home/vagrant/processmaker/homestead/home/vagrant/.composer/config.json /home/vagrant/.composer
sudo chown -R vagrant: /home/vagrant/.composer