contentdb/docker-compose.yml

61 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2019-01-09 22:58:11 +01:00
version: '3'
2019-01-09 22:58:11 +01:00
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"
environment: &env
- POSTGRES_USER=contentdb
- POSTGRES_PASSWORD=password
- POSTGRES_DB=contentdb
- FLASK_DEBUG=0
- FLASK_CONFIG=../config.cfg
2019-01-09 23:29:05 +01:00
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: .
container_name: contentdb_app_1
2019-11-22 00:16:39 +01:00
command: ./utils/entrypoint.sh
environment: *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
environment: *env
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
environment: *env
depends_on:
- redis
2020-04-24 01:49:40 +02:00
exporter:
image: ovalmoney/celery-exporter
environment: *env
2020-04-24 01:49:40 +02:00
ports:
- 5125:9540
depends_on:
- redis