1
0
mirror of https://github.com/krislamo/graylog_demo synced 2024-09-19 21:50:36 +00:00

Reorganize docker-compose files

This commit is contained in:
Kris Lamoureux 2020-02-19 13:46:52 -05:00
parent 5fd590d856
commit 96e1884038
Signed by: kris
GPG Key ID: A30022791E1719A4
3 changed files with 3 additions and 2 deletions

5
Vagrantfile vendored
View File

@ -57,8 +57,9 @@ Vagrant.configure("2") do |config|
# Start compose services
config.vm.provision "shell", inline: <<-SHELL
cd /vagrant
/usr/local/bin/docker-compose -f graylog.yml up -d 2> /dev/null
/usr/local/bin/docker-compose -f wordpress.yml up -d 2> /dev/null
/usr/local/bin/docker-compose up -d 2> /dev/null
cd /vagrant/wordpress
/usr/local/bin/docker-compose up -d 2> /dev/null
SHELL
end