chore(compose): prepare minio and typesense for reinclusion
This commit is contained in:
parent
57ca4fd86d
commit
c29cc21259
|
@ -1,13 +1,12 @@
|
||||||
services:
|
services:
|
||||||
typesense:
|
typesense:
|
||||||
env_file:
|
environment:
|
||||||
- .env.dev
|
- TYPESENSE_API_KEY
|
||||||
- .env
|
image: typesense/typesense:0.27.1
|
||||||
image: typesense/typesense:0.24.0
|
|
||||||
networks:
|
networks:
|
||||||
- internal
|
- internal
|
||||||
volumes:
|
volumes:
|
||||||
- ./typesense/data:/data
|
- ../.state/typesense/data:/data
|
||||||
command: --data-dir /data --enable-cors
|
command: --data-dir /data --api-key=$${TYPESENSE_API_KEY} --enable-cors
|
||||||
profiles:
|
profiles:
|
||||||
- typesense
|
- typesense
|
||||||
|
|
|
@ -5,8 +5,8 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- "../.state/${COMPOSE_PROJECT_NAME:-funkwhale}/minio:/data"
|
- "../.state/${COMPOSE_PROJECT_NAME:-funkwhale}/minio:/data"
|
||||||
environment:
|
environment:
|
||||||
- "MINIO_ACCESS_KEY=${AWS_ACCESS_KEY_ID-access_key}"
|
- "MINIO_ACCESS_KEY=${AWS_ACCESS_KEY_ID:-access_key}"
|
||||||
- "MINIO_SECRET_KEY=${AWS_SECRET_ACCESS_KEY-secret_key}"
|
- "MINIO_SECRET_KEY=${AWS_SECRET_ACCESS_KEY:-secret_key}"
|
||||||
- "MINIO_HTTP_TRACE: /dev/stdout"
|
- "MINIO_HTTP_TRACE: /dev/stdout"
|
||||||
ports:
|
ports:
|
||||||
- "9000:9000"
|
- "9000:9000"
|
||||||
|
@ -16,12 +16,8 @@ services:
|
||||||
|
|
||||||
api:
|
api:
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
minio: {}
|
||||||
- minio
|
|
||||||
- redis
|
|
||||||
|
|
||||||
celeryworker:
|
celeryworker:
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
minio: {}
|
||||||
- minio
|
|
||||||
- redis
|
|
||||||
|
|
Loading…
Reference in New Issue