Update Dockerfile, add docker-compose for prod and dev environment, cleanup some old things

This commit is contained in:
ErickSkrauch
2018-02-16 00:01:46 +03:00
parent 55f52d0ad4
commit acd0237fac
12 changed files with 69 additions and 154 deletions

14
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,14 @@
# This file can be used to start up necessary services.
# Copy it into the docker-compose.yml:
# > cp docker-compose.dev.yml docker-compose.yml
# And then run it:
# > docker-compose up -d
version: '2'
services:
redis:
image: redis:4.0-32bit
ports:
- "6379:6379"
volumes:
- ./data/redis:/data