Add Readme and example compose file

This commit is contained in:
Markus Opolka
2018-02-13 10:21:27 +01:00
parent a1bdc464fb
commit b8eb7b7c92
4 changed files with 37 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: "3.0"
services:
limesurvey:
build:
context: .
dockerfile: apache/Dockerfile
links:
- lime-db
depends_on:
- lime-db
ports:
- "8080:80"
lime-db:
image: mysql:5.7
environment:
- "MYSQL_USER=limesurvey"
- "MYSQL_DATABASE=limesurvey"
- "MYSQL_PASSWORD=secret"
- "MYSQL_ROOT_PASSWORD=secret"