url-shortener/docker-compose.yaml

9 lines
174 B
YAML
Raw Normal View History

2024-09-23 10:27:21 -07:00
version: '3'
services:
redis:
image: redis:latest
command: ["redis-server"]
environment:
- REDIS_PASSWORD=${REDIS_PASSWORD}
ports:
- "6379:6379"