File: docker-compose.yml

package info (click to toggle)
celery 5.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 8,324 kB
  • sloc: python: 67,132; sh: 795; makefile: 378
file content (48 lines) | stat: -rw-r--r-- 1,192 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
services:
  celery:
    build:
      context: ..
      dockerfile: docker/Dockerfile
      args:
        CELERY_USER: developer
    image: celery/celery:dev
    environment:
      TEST_BROKER: pyamqp://rabbit:5672
      TEST_BACKEND: redis://redis
      PYTHONUNBUFFERED: 1
      PYTHONDONTWRITEBYTECODE: 1
      REDIS_HOST: redis
      WORKER_LOGLEVEL: DEBUG
      AZUREBLOCKBLOB_URL: azureblockblob://DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite:10000/devstoreaccount1;
      PYTHONPATH: /home/developer/celery
    tty: true
    volumes:
      - ../.:/home/developer/celery
    depends_on:
      - rabbit
      - redis
      - dynamodb
      - azurite

  rabbit:
    image: rabbitmq:management

  redis:
    image: redis:latest

  dynamodb:
    image: amazon/dynamodb-local:latest

  azurite:
    image: mcr.microsoft.com/azure-storage/azurite:latest

  docs:
    image: celery/docs
    build:
      context: ..
      dockerfile: docker/docs/Dockerfile
    volumes:
        - ../docs:/docs:z
    ports:
      - "7001:7000"
    command: /start-docs