mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
1.9 KiB
89 lines
1.9 KiB
version: "3.7"
|
|
services:
|
|
|
|
backend:
|
|
build:
|
|
context: .
|
|
dockerfile: app/Dockerfile.dev
|
|
volumes:
|
|
- .:/src
|
|
- venv:/root/.local/share
|
|
environment:
|
|
ADMIN_USERNAME: "admin"
|
|
ADMIN_PASSWORD: "password"
|
|
ADMIN_EMAIL: "admin@example.com"
|
|
CELERY_BROKER_URL: "amqp://doccano:doccano@rabbitmq"
|
|
DATABASE_URL: "postgres://doccano:doccano@postgres:5432/doccano?sslmode=disable"
|
|
ALLOW_SIGNUP: "False"
|
|
DEBUG: "True"
|
|
ports:
|
|
- 8000:8000
|
|
depends_on:
|
|
- postgres
|
|
networks:
|
|
- network-backend
|
|
- network-frontend
|
|
|
|
celery:
|
|
build:
|
|
context: .
|
|
dockerfile: app/Dockerfile.dev
|
|
volumes:
|
|
- .:/src
|
|
- venv:/root/.local/share
|
|
entrypoint: ["/src/tools/dev-celery.sh"]
|
|
environment:
|
|
PYTHONUNBUFFERED: "1"
|
|
CELERY_BROKER_URL: "amqp://doccano:doccano@rabbitmq"
|
|
DATABASE_URL: "postgres://doccano:doccano@postgres:5432/doccano?sslmode=disable"
|
|
depends_on:
|
|
- postgres
|
|
- rabbitmq
|
|
networks:
|
|
- network-backend
|
|
|
|
rabbitmq:
|
|
image: rabbitmq:3.8
|
|
environment:
|
|
RABBITMQ_DEFAULT_USER: "doccano"
|
|
RABBITMQ_DEFAULT_PASS: "doccano"
|
|
ports:
|
|
- 5672:5672
|
|
networks:
|
|
- network-backend
|
|
|
|
frontend:
|
|
image: node:13.7.0
|
|
command: ["/src/tools/dev-nuxt.sh"]
|
|
working_dir: /src/frontend
|
|
environment:
|
|
API_URL: "http://backend:8000"
|
|
volumes:
|
|
- .:/src
|
|
- node_modules:/src/frontend/node_modules
|
|
ports:
|
|
- 3000:3000
|
|
depends_on:
|
|
- backend
|
|
networks:
|
|
- network-frontend
|
|
|
|
postgres:
|
|
image: postgres:13.1-alpine
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data/
|
|
environment:
|
|
POSTGRES_USER: "doccano"
|
|
POSTGRES_PASSWORD: "doccano"
|
|
POSTGRES_DB: "doccano"
|
|
networks:
|
|
- network-backend
|
|
|
|
volumes:
|
|
postgres_data:
|
|
node_modules:
|
|
venv:
|
|
|
|
networks:
|
|
network-backend:
|
|
network-frontend:
|