Fixing docker compose and git_update.sh
This commit is contained in:
parent
8d62b2e367
commit
6aba0cdb17
|
@ -3,6 +3,6 @@ version: '2'
|
||||||
services:
|
services:
|
||||||
torrents-csv:
|
torrents-csv:
|
||||||
build: .
|
build: .
|
||||||
command: bash -c "cd /usr/app/server/service; cargo run --release"
|
command: /bin/sh -c /app/torrents-csv-service
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
|
@ -1,4 +1,4 @@
|
||||||
# This updates the repository from the git repo, and re-caches the torrents.db sqlite file
|
# This updates the repository from the git repo, and re-caches the torrents.db sqlite file
|
||||||
git pull
|
git pull
|
||||||
git gc
|
git gc
|
||||||
. build_sqlite.sh
|
./build_sqlite.sh
|
Loading…
Reference in New Issue