version: '3' services: nginx: image: nginx:latest ports: - 1333:80 depends_on: - web networks: - main volumes: - ./nginx:/etc/nginx/conf.d - static_volume:/app/static - media_volume:/app/images db: image: postgres volumes: - pgdata:/var/lib/postgresql/data networks: - main web: build: . command: python manage.py runserver 0.0.0.0:8000 volumes: - .:/app - static_volume:/app/static - media_volume:/app/images depends_on: - db - celery_worker networks: - main ports: - 8000:8000 redis: image: redis ports: - 6379:6379 networks: - main restart: on-failure celery_worker: build: . networks: - main command: celery -A celerywyrm worker -l info volumes: - .:/app - static_volume:/app/static - media_volume:/app/images depends_on: - db - redis restart: on-failure volumes: pgdata: static_volume: media_volume: networks: main: