configuration/docker-compose.ci.tools.yml

16 lines
256 B
YAML
Raw Normal View History

2023-01-25 14:16:13 +00:00
version: '3.8'
services:
2023-10-25 07:09:45 +00:00
redis:
container_name: v3-redis
image: ${REDIS_IMAGE}
command: redis-server --requirepass ${REDIS_PASSWORD}
2023-01-25 14:16:13 +00:00
ports:
2023-10-25 07:09:45 +00:00
- 6379:6379
2023-01-25 14:16:13 +00:00
networks:
- v3-network
networks:
v3-network:
name: v3-network