This commit is contained in:
Cryptoval Trading Technologies 2024-09-11 01:28:31 +00:00
parent 0e726530ee
commit e5448f2ab4
6 changed files with 30 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
cd $(dirname ${0}) cd $(dirname ${0})
docker compose down && docker compose up -d --pull=always docker compose down
docker compose up -d --pull=always

View File

@ -0,0 +1,13 @@
version: "3.8"
#==================================================
services:
relative_liquidity:
image: cloud21.cvtt.vpn:5500/relative_liquidity:latest
container_name: relative_liquidity_svc
restart: unless-stopped
volumes:
- /home/cvtt/prod/data:/app/data
- /home/cvtt/prod/logs:/logs
ports:
- 5678:5678

View File

@ -0,0 +1,5 @@
#!/bin/bash
cd $(dirname ${0})
docker compose down
docker compose up -d --pull=always

View File

@ -0,0 +1,4 @@
#!/bin/bash
cd $(dirname ${0})
docker compose up -d --pull=always

4
run_relative_liquidity/stop.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
cd $(dirname ${0})
docker compose down

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
cd $(dirname ${0}) cd $(dirname ${0})
docker compose down && docker compose up -d --pull=always docker compose down
docker compose up -d --pull=always