moving docker to a separate package

This commit is contained in:
Szakalakamaka
2020-09-29 14:06:15 +02:00
parent 493e8cc30d
commit d6de7c5e20
3 changed files with 2 additions and 6 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3'
services:
redis-server:
image: 'redis'
restart: "no"
klaus:
build:
context: .
dockerfile: Dockerfile
container_name: klaus
restart: "no"
ports:
- "8097:8097"
depends_on:
- redis-server