Update to 0.5.0
This commit is contained in:
parent
73784bb21f
commit
23e73ceb60
3 changed files with 6 additions and 2 deletions
|
|
@ -20,7 +20,7 @@
|
|||
git:
|
||||
repo: '{{ app_repository }}'
|
||||
dest: '{{ app_dir }}'
|
||||
version: '{{ app_branch }}'
|
||||
version: '{{ app_ref }}'
|
||||
update: true
|
||||
|
||||
- name: copy .production.env
|
||||
|
|
@ -33,6 +33,8 @@
|
|||
project_src: '{{ app_dir }}'
|
||||
state: absent
|
||||
|
||||
# TODO: recreate static volume
|
||||
|
||||
- name: start newsreader
|
||||
docker_compose:
|
||||
build: true
|
||||
|
|
|
|||
|
|
@ -26,5 +26,7 @@ TWITTER_CONSUMER_ID='{{ twitter_client_id }}'
|
|||
TWITTER_CONSUMER_SECRET='{{ twitter_client_secret }}'
|
||||
TWITTER_REDIRECT_URL='{{ twitter_redirect_url }}'
|
||||
|
||||
VERSION='{{ app_ref }}'
|
||||
|
||||
SENTRY_DSN='{{ sentry_dsn }}'
|
||||
ADMINS='{{ admins }}'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
app_name: 'newsreader'
|
||||
app_repository: 'https://git.fudiggity.nl/sonny/newsreader'
|
||||
app_branch: '0.4.3'
|
||||
app_ref: '0.5.0'
|
||||
app_dir: '/srv/docker/newsreader'
|
||||
|
||||
django_settings_module: 'newsreader.conf.production'
|
||||
|
|
|
|||
Reference in a new issue