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:
Kevin Morris 2021-06-28 08:30:12 -07:00
parent 35851d5533
commit 96d1af9363
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
7 changed files with 33 additions and 1 deletions

View file

@ -14,6 +14,7 @@ pacman -Syu --noconfirm --noprogressbar \
python-pytest-asyncio python-coverage hypercorn python-bcrypt \
python-email-validator openssh python-lxml mariadb mariadb-libs \
python-isort flake8 cgit uwsgi uwsgi-plugin-cgi php php-fpm \
python-asgiref uvicorn python-feedgen memcached php-memcached
python-asgiref uvicorn python-feedgen memcached php-memcached \
python-redis redis
exec "$@"

2
docker/scripts/run-redis.sh Executable file
View file

@ -0,0 +1,2 @@
#!/bin/bash
exec /usr/bin/redis-server /etc/redis/redis.conf