-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstart.sh
More file actions
executable file
·15 lines (15 loc) · 761 Bytes
/
start.sh
File metadata and controls
executable file
·15 lines (15 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
echo "###################################################"
echo "# Start building application image #"
echo "###################################################"
docker-compose build
echo "###################################################"
echo "# Application image successfully CREATED. #"
echo "###################################################"
echo "###################################################"
echo "## Trying to start docker compose infrastructure. #"
echo "###################################################"
docker-compose up -d
echo "###################################################"
echo "# INFRASTRUCTURE SUCCESSFULLY STARTED #"
echo "###################################################"