Archived
2
0
Fork 0
forked from blallo/Feedati
This repository has been archived on 2024-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
Feedati/dodo.py

106 lines
3 KiB
Python
Raw Normal View History

2018-08-09 10:34:34 +02:00
import subprocess
from doit.tools import LongRunning
from dodo_utils import wait_net_service, up2date_anyimages, run_task_func
2018-08-09 10:34:34 +02:00
COMPOSE = 'docker-compose -p feedati'
DOIT_CONFIG = {'default_tasks': ['up']}
2018-08-09 10:34:34 +02:00
def task_build():
'''builda il container docker'''
return {
'uptodate': [up2date_anyimages],
'file_dep': ['docker-compose.yml', 'docker/Dockerfile-tt-rss'],
'actions': [COMPOSE + ' build'],
'clean': [run_task_func(task__build_rm), run_task_func(task__build_rmi)],
'doc': '''
This task recreates every docker container. While it is automatically run for most changes in the
development environment, please remember that if you want to run it manually to grab changes in the
docker hub, you need to run `doit run -a build`.
'''
2018-08-09 10:34:34 +02:00
}
def task__build_rm():
2018-08-09 10:34:34 +02:00
'''rimuove container avviati'''
return {'actions': [
"docker container ls -a --format '{{.ID}}\t{{.Names}}'|"
"awk '$2 ~ /^feedati_/ { print $1 }' | "
"xargs -r docker container rm",
]}
2018-08-09 10:34:34 +02:00
def task__build_rmi():
2018-08-09 10:34:34 +02:00
'''rimuove immagini ottenute con build'''
return {
'actions': [
r"docker images -q 'feedati/*' |"
"xargs -r --verbose docker rmi",
2018-08-09 10:34:34 +02:00
]
}
def task__dbprepare_clean():
2018-08-09 10:34:34 +02:00
'''rimuove il dump caricato sul db'''
return {
'actions': [
"docker container ls -a --format '{{.ID}}\t{{.Names}}'|"
"awk '$2 ~ /^feedati_db$/ { print $$1 }' | "
2018-08-09 10:34:34 +02:00
"xargs -r docker container rm",
"docker volume rm feedati_postgres_data || true",
]
}
def task_dbprepare():
2018-08-09 10:34:34 +02:00
'''applica il dump sql al container del db'''
return {
'task_dep': ['_dbprepare_clean', 'build'],
2018-08-09 10:34:34 +02:00
'file_dep': ['docker/ttrss.sql'],
'actions': [
(COMPOSE + ' up -d db').split(),
r'docker cp ./docker/ttrss.sql '
'$(docker ps -qf name=feedati_db):/tmp/ttrss.sql',
(wait_net_service, ['localhost', 5432, 300]),
r'docker exec -t $(docker ps -qf name=feedati_db) '
'su -c "psql -d ttrss < /tmp/ttrss.sql" postgres',
'docker exec -t $(docker ps -qf name=feedati_db) '
'rm -f /tmp/ttrss.sql',
COMPOSE + ' stop',
],
'clean': [run_task_func(task__dbprepare_clean)]
2018-08-09 10:34:34 +02:00
}
def task__fix_perms():
2018-08-09 10:34:34 +02:00
'''fix permissions for shared www dir'''
return {
'actions': [
'chmod -R 777 tt-rss/feed-icons/ tt-rss/cache/ tt-rss/lock/'
.split()
]
}
def task_up():
'''RUN that stuff!'''
2018-08-09 10:34:34 +02:00
return {
'task_dep': ['build', 'dbprepare', '_fix_perms'],
2018-08-09 10:34:34 +02:00
'actions': [LongRunning(
(COMPOSE + ' up'),
shell=True)
]
}
def task__cleanall():
2018-08-09 10:34:34 +02:00
'''clean everything there is to clean'''
return {
'task_dep': ['_build_rm', '_build_rmi', '_dbprepare_clean'],
2018-08-09 10:34:34 +02:00
'actions': None
}