run_trading_calendar

This commit is contained in:
Cryptoval Trading Technologies 2024-09-11 02:10:06 +01:00
parent e27acb4497
commit 0e726530ee
4 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,10 @@
version: "3.8"
#==================================================
services:
trading_calendar:
image: apptasticsoftware/trading-calendar
container_name: trading-calendar
restart: unless-stopped
ports:
- 8000:80

View File

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

4
run_trading_calendar/start.sh Executable file
View File

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

4
run_trading_calendar/stop.sh Executable file
View File

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