contentdb/docker-compose.yml

62 lines
1.1 KiB
YAML
Raw Permalink Normal View History

2019-01-09 22:58:11 +01:00
version: '3'
services:
db:
2022-01-17 19:15:47 +01:00
image: "postgres:14.1"
2019-01-09 22:58:11 +01:00
volumes:
- "./data/db:/var/lib/postgresql/data"
env_file:
2019-01-09 23:29:05 +01:00
- config.env
redis:
2022-01-27 19:59:37 +01:00
image: 'redis:6.2-alpine'
2019-01-09 23:29:05 +01:00
command: redis-server
volumes:
- './data/redis:/data'
2019-01-09 22:58:11 +01:00
app:
build: .
2019-11-22 00:16:39 +01:00
command: ./utils/entrypoint.sh
env_file:
- config.env
2019-01-09 22:58:11 +01:00
ports:
- 5123:5123
volumes:
2020-01-18 02:20:32 +01:00
- "./data/uploads:/var/cdb/uploads"
- "./app:/source/app"
- "./migrations:/source/migrations"
2019-01-09 22:58:11 +01:00
depends_on:
- db
2019-01-09 23:29:05 +01:00
- redis
2019-01-09 22:58:11 +01:00
2019-01-09 23:29:05 +01:00
worker:
build: .
command: celery -A app.tasks.celery worker --concurrency 1
2019-01-09 23:29:05 +01:00
env_file:
- config.env
environment:
- FLASK_CONFIG=../config.cfg
2019-01-09 23:29:05 +01:00
volumes:
2020-01-18 02:20:32 +01:00
- "./data/uploads:/var/cdb/uploads"
- "./app:/home/cdb/app"
2019-01-09 23:29:05 +01:00
depends_on:
- redis
beat:
build: .
command: celery -A app.tasks.celery beat
env_file:
- config.env
environment:
- FLASK_CONFIG=../config.cfg
depends_on:
- redis
2020-04-24 01:49:40 +02:00
exporter:
image: ovalmoney/celery-exporter
env_file:
- config.env
ports:
- 5125:9540
depends_on:
- redis