- replace storages with archives, which have a single storage (for now) - crawls associated with archives - users below to archive, with one admin user (if archive created by default) - update crawlconfig for latest browsertrix-crawler (0.4.4) - k8s: fix permissions for crawler role - k8s: fix minio service (now requiring two ports)
36 lines
555 B
YAML
36 lines
555 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
backend:
|
|
build: ./backend
|
|
image: webrecorder/browsertrix-api
|
|
ports:
|
|
- 8000:8000
|
|
|
|
environment:
|
|
MONGO_HOST: mongo
|
|
PASSWORD_SECRET: 'c9085f33ecce4347aa1d69339e16c499'
|
|
|
|
mongo:
|
|
image: mongo
|
|
environment:
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
MONGO_INITDB_ROOT_PASSWORD: example
|
|
|
|
volumes:
|
|
- mongodata:/data/db
|
|
|
|
minio:
|
|
image: minio/minio
|
|
command: server /data
|
|
ports:
|
|
- 8010:9000
|
|
|
|
volumes:
|
|
- miniodata:/data
|
|
|
|
volumes:
|
|
mongodata:
|
|
miniodata:
|
|
|