mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
docker-compose: add redis service
Now, the fastapi docker-compose service uses the new redis service for a cache option. Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
35851d5533
commit
96d1af9363
7 changed files with 33 additions and 1 deletions
|
@ -36,6 +36,16 @@ services:
|
|||
healthcheck:
|
||||
test: "bash /docker/health/memcached.sh"
|
||||
|
||||
redis:
|
||||
image: aurweb:latest
|
||||
init: true
|
||||
entrypoint: /docker/redis-entrypoint.sh
|
||||
command: /docker/scripts/run-redis.sh
|
||||
healthcheck:
|
||||
test: "bash /docker/health/redis.sh"
|
||||
ports:
|
||||
- "16379:6379"
|
||||
|
||||
mariadb:
|
||||
image: aurweb:latest
|
||||
init: true
|
||||
|
@ -172,6 +182,8 @@ services:
|
|||
condition: service_started
|
||||
git:
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition: service_healthy
|
||||
mariadb:
|
||||
condition: service_healthy
|
||||
volumes:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue