1
1
mirror of https://github.com/chubin/cheat.sh.git synced 2024-11-23 02:25:53 +03:00
cheat.sh/docker-compose.yml
Anatoli Babenia be9d3a70fe Run cheat.sh service (app) by docker-compose in debug mode
This would allow later inspection of stdout.

Assigned names to image and container to avoid confusion.
Build is done separately to clean up the output.
2020-07-31 09:25:04 +03:00

17 lines
246 B
YAML

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