framaforms-stack/docker-compose.yml

30 lines
543 B
YAML

version: "3.8"
services:
app:
build: .
volumes:
- drupal-modules:/var/www/html/modules
- drupal-profiles:/var/www/html/profiles
- drupal-sites:/var/www/html/sites
- drupal-themes:/var/www/html/themes
ports:
- 8000:80
db:
image: postgres:10
env_file:
- database.env
volumes:
- database-data:/var/lib/postgresql/data/
adminer:
image: adminer
ports:
- 8080:8080
volumes:
database-data:
drupal-modules:
drupal-profiles:
drupal-sites:
drupal-themes: