Skip to content

Commit

Permalink
fix(docker): pull remote DockerHub images in Compose (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocervell committed Apr 27, 2024
1 parent 7ef7a5e commit dce6d8a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ version: "3.7"
services:

secator:
image: secator
image: freelabz/secator:latest
restart: unless-stopped
entrypoint: ""
command: tail -F anything
environment:
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
- SECATOR_CELERY_BROKER_URL=redis://redis:6379/0
- SECATOR_CELERY_RESULT_BACKEND=redis://redis:6379/0
depends_on:
- redis

worker:
image: secator
image: freelabz/secator:latest
restart: unless-stopped
command: worker
environment:
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
- SECATOR_CELERY_BROKER_URL=redis://redis:6379/0
- SECATOR_CELERY_RESULT_BACKEND=redis://redis:6379/0
depends_on:
- redis

redis:
image: redis:latest
image: redis:latest

0 comments on commit dce6d8a

Please sign in to comment.