1
0
Fork 0

Add cronjob to update all data

* Updates data from DB API
* Update TLEs
merge-requests/122/head
Nikos Roussos 2015-05-09 12:51:24 +03:00
parent 21a3f3186e
commit ca92fa141a
6 changed files with 4 additions and 4 deletions

View File

@ -13,4 +13,4 @@ COPY . /app
EXPOSE 80
CMD ["./bin/run-docker.sh"]
CMD ["./docker/run-docker.sh"]

View File

View File

@ -1,4 +1,4 @@
#!/bin/sh
./bin/run-common.sh
./docker/run-common.sh
gunicorn network.wsgi:application -b 0.0.0.0:80 -w 2 --log-file -

View File

@ -1,4 +1,4 @@
#!/bin/sh
./bin/run-common.sh
./docker/run-common.sh
./manage.py runserver 0.0.0.0:8000

View File

@ -19,4 +19,4 @@ web:
- ALLOWED_HOSTS=*
- DATABASE_URL=mysql://network:network@db/network
command:
./bin/run-fig.sh
./docker/run-fig.sh