redis: image: redis postgres: image: postgres:9.4 environment: - POSTGRES_USER:sentry - POSTGRES_PASSWORD:sentry volumes: - /var/data/sentry/postgre:/var/lib/postgresql/data:rw sentry: image: sentry:7.7 links: - redis - postgres ports: - 9000:9000 stdin_open: true tty: true sentry_celery_beat: image: sentry:7.7 links: - redis - postgres command: "sentry celery beat" sentry_celery_worker: image: sentry:7.7 links: - redis - postgres command: "sentry celery worker"