16 lines
214 B
YAML
16 lines
214 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis
|
|
networks:
|
|
- db_net
|
|
ports:
|
|
- 6379:6379
|
|
command: >
|
|
--requirepass ${REDIS_PASS}
|
|
env_file:
|
|
- .env
|
|
networks:
|
|
app_net:
|
|
db_net:
|