Add containers

This commit is contained in:
David Petric
2023-03-27 20:54:28 +02:00
parent 04f275eb6e
commit a8345d0d45
7 changed files with 81 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
version: '3'
services:
cache:
container_name: redis
image: redis:6.2-alpine
restart: always
ports:
- '127.0.0.1:6379:6379'
command: redis-server --loglevel warning --requirepass {{ redis_pass }}
volumes:
- /opt/docker/redis:/data