Skip to content

Commit 8d376ef

Browse files
committed
fix: sync start script
1 parent d9ec676 commit 8d376ef

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

start.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# run env setup script
2-
sh ./set_env.sh;
2+
sh ./set_env.sh && \
33
# Make sure the Docker services are running in your local machine
4-
# Remove unused and dangling images
5-
docker image prune --all
64
# Run this command from the directory where you have the "docker-compose-build.yml" file present
7-
docker-compose -f docker-compose-build.yml build --parallel
5+
docker-compose -f docker-compose-build.yml build --parallel && \
86

97
# Run this command from the directory where you have the "docker-compose.yml" file present
10-
docker-compose up
8+
docker-compose up;

0 commit comments

Comments
 (0)