-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (19 loc) · 852 Bytes
/
Makefile
File metadata and controls
19 lines (19 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
start_services:
docker-compose up -d
docker-compose -f milvus-standalone-docker-compose.yml up -d
localstack start -d
awslocal s3api create-bucket --bucket testing-bucket --region us-east-1
build_images:
docker build -f Dockerfile.web -t whyneet/bit-web .
docker build -f Dockerfile.api -t whyneet/bit-api .
build_api_image:
docker build -f Dockerfile.api -t whyneet/bit-api .
build_web_image:
docker build -f Dockerfile.web -t whyneet/bit-web .
run_api_image:
docker run -p 8080:8080 --env-file .env.api.docker.example -e PORT=8080 --network=host --name bit-api whyneet/bit-api
run_web_image:
docker run -p 4200:4200 --name bit-web whyneet/bit-web
run_images:
docker run -p 8080:8080 --env-file .env.api.docker.example -e PORT=8080 --network=host --name bit-api -d whyneet/bit-api
docker run -p 4200:4200 --name bit-web -d whyneet/bit-web