mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-08 08:33:45 +01:00
38 lines
716 B
YAML
38 lines
716 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
image: "postgres:9.6.5"
|
|
volumes:
|
|
- "./data/db:/var/lib/postgresql/data"
|
|
env_file:
|
|
- config.env
|
|
|
|
redis:
|
|
image: 'redis:3.0-alpine'
|
|
command: redis-server
|
|
volumes:
|
|
- './data/redis:/data'
|
|
|
|
app:
|
|
build: .
|
|
command: ./rundebug.sh
|
|
ports:
|
|
- 5123:5123
|
|
volumes:
|
|
- "./data/uploads:/home/cdb/app/public/uploads"
|
|
- "./app:/home/cdb/app"
|
|
- "./migrations:/home/cdb/migrations"
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
|
|
worker:
|
|
build: .
|
|
command: celery -A app.tasks.celery worker
|
|
env_file:
|
|
- config.env
|
|
volumes:
|
|
- "./data/uploads:/home/cdb/app/public/uploads"
|
|
depends_on:
|
|
- redis
|