Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/update linkchecker #1139

Merged
merged 2 commits into from
Apr 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,19 +74,17 @@ services:
depends_on:
- db
- rabbitmq
build:
context: .
env_file: .env
environment:
- CELERY_BROKER_URL
- DJANGO_SETTINGS_MODULE=di_website.settings.dev
build:
context: .
dockerfile: Dockerfile
volumes:
- ./:/code/
- ./config/celery/default:/etc/default
- ./config/celery/init.d:/etc/init.d
restart: always
command: celery -A wagtaillinkchecker worker -l info
command: celery -A di_website worker -l info

volumes:
diwebsite_db:
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ services:
- web
- consul


certbot:
container_name: certbot
image: certbot/certbot:latest
Expand Down Expand Up @@ -151,16 +150,17 @@ services:
env_file: .env
environment:
- CELERY_BROKER_URL
- DJANGO_SETTINGS_MODULE=di_website.settings.dev
build:
context: .
dockerfile: Dockerfile
volumes:
- ./:/code/
- ./config/celery/default:/etc/default
- ./config/celery/init.d:/etc/init.d
restart: always
command: celery -A wagtaillinkchecker worker -l info
command: celery -A di_website worker -l info
networks:
- web
- consul

volumes:
diwebsite_db:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ num2words==0.5.10
beautifulsoup4==4.8
bleach==3.3.0
elasticsearch>=7.0.0,<7.16.3
wagtail-linkchecker==0.5.3
wagtail-linkchecker==0.6.0
celery==4.4.7
wagtailgeowidget==5.0.2
xlrd>=1.0.0
Expand Down