1
1
mirror of https://github.com/chubin/cheat.sh.git synced 2024-11-23 10:35:29 +03:00
cheat.sh/docker-compose.yml

15 lines
218 B
YAML
Raw Normal View History

version: '3.6'
services:
app:
build:
context: .
depends_on:
- redis
ports:
- "8002:8002"
redis:
image: redis:3.2-alpine
volumes:
- redis_data:/data
volumes:
redis_data: