mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-20 16:08:14 +00:00
no message
This commit is contained in:
parent
92c4565590
commit
86d9baa503
@ -8,6 +8,7 @@ services:
|
|||||||
soft: 0
|
soft: 0
|
||||||
hard: 0
|
hard: 0
|
||||||
volumes:
|
volumes:
|
||||||
|
- shared_data:/usr/share/dootask
|
||||||
- ./docker/crontab/crontab.conf:/etc/supervisor/conf.d/crontab.conf
|
- ./docker/crontab/crontab.conf:/etc/supervisor/conf.d/crontab.conf
|
||||||
- ./docker/php/php.conf:/etc/supervisor/conf.d/php.conf
|
- ./docker/php/php.conf:/etc/supervisor/conf.d/php.conf
|
||||||
- ./docker/php/php.ini:/usr/local/etc/php/php.ini
|
- ./docker/php/php.ini:/usr/local/etc/php/php.ini
|
||||||
@ -48,6 +49,8 @@ services:
|
|||||||
redis:
|
redis:
|
||||||
container_name: "dootask-redis-${APP_ID}"
|
container_name: "dootask-redis-${APP_ID}"
|
||||||
image: "redis:alpine"
|
image: "redis:alpine"
|
||||||
|
volumes:
|
||||||
|
- redis_data:/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "redis-cli", "ping"]
|
test: ["CMD", "redis-cli", "ping"]
|
||||||
interval: 5s
|
interval: 5s
|
||||||
@ -220,7 +223,7 @@ services:
|
|||||||
container_name: "dootask-search-${APP_ID}"
|
container_name: "dootask-search-${APP_ID}"
|
||||||
image: "public.ecr.aws/zinclabs/zincsearch:0.4.10"
|
image: "public.ecr.aws/zinclabs/zincsearch:0.4.10"
|
||||||
volumes:
|
volumes:
|
||||||
- ./docker/search/zincsearch:/data
|
- search_data:/data
|
||||||
environment:
|
environment:
|
||||||
ZINC_DATA_PATH: "/data"
|
ZINC_DATA_PATH: "/data"
|
||||||
ZINC_FIRST_ADMIN_USER: "${DB_USERNAME}"
|
ZINC_FIRST_ADMIN_USER: "${DB_USERNAME}"
|
||||||
@ -242,3 +245,11 @@ networks:
|
|||||||
config:
|
config:
|
||||||
- subnet: "${APP_IPPR}.0/24"
|
- subnet: "${APP_IPPR}.0/24"
|
||||||
gateway: "${APP_IPPR}.1"
|
gateway: "${APP_IPPR}.1"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
shared_data:
|
||||||
|
name: "dootask-shared-data-${APP_ID}"
|
||||||
|
redis_data:
|
||||||
|
name: "dootask-redis-data-${APP_ID}"
|
||||||
|
search_data:
|
||||||
|
name: "dootask-search-data-${APP_ID}"
|
||||||
|
|||||||
2
docker/search/zincsearch/.gitignore
vendored
2
docker/search/zincsearch/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
*
|
|
||||||
!.gitignore
|
|
||||||
Loading…
x
Reference in New Issue
Block a user