8 lines
230 B
Bash
Executable File
8 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
|
|
docker stop search-api
|
|
docker rm search-api
|
|
docker build -t search-api .
|
|
docker run -d -p 3000:3000 --name search-api search-api
|
|
# docker exec -it search-api python driver.py /usr/bin/chromium-browser https://ferano.io
|