mirror of
https://github.com/status-im/autobounty.git
synced 2025-01-12 06:44:55 +00:00
6 lines
181 B
Bash
Executable File
6 lines
181 B
Bash
Executable File
CONTAINER_ID="$(docker ps -lq)"
|
|
LOG_PATH=$(pwd)/log
|
|
docker stop ${CONTAINER_ID}
|
|
docker build -t autobounty .
|
|
docker run -d -v ${LOG_PATH}:/usr/src/app/log -p 8080:8080 autobounty &
|