1
1
mirror of https://github.com/chubin/cheat.sh.git synced 2024-11-25 14:39:13 +03:00
cheat.sh/docker-compose.yml
2021-11-13 19:38:32 +03:00

21 lines
332 B
YAML

version: '2'
services:
app:
build: .
image: cheat.sh
container_name: chtsh
depends_on:
- redis
environment:
- CHEATSH_CACHE_REDIS_HOST=redis
ports:
- "8002:8002"
volumes:
- .:/app:Z
redis:
image: redis:4-alpine
volumes:
- redis_data:/data
volumes:
redis_data: