mirror of
https://github.com/mykitserver/docker-limesurvey.git
synced 2025-12-06 16:39:11 +01:00
20 lines
377 B
YAML
20 lines
377 B
YAML
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"
|