version: "3.0" services: limesurvey: build: context: 4.0/apache/ dockerfile: Dockerfile volumes: - /tmp/upload/surveys:/var/www/html/upload/surveys links: - lime-db depends_on: - lime-db ports: - "8080:80" environment: - "DB_HOST=docker-limesurvey_lime-db_1" - "DB_PASSWORD=secret" - "ADMIN_PASSWORD=foobar" lime-db: image: mysql:5.7 environment: - "MYSQL_USER=limesurvey" - "MYSQL_DATABASE=limesurvey" - "MYSQL_PASSWORD=secret" - "MYSQL_ROOT_PASSWORD=secret"