framaforms-stack/docker-compose.yml

38 lines
717 B
YAML
Raw Permalink Normal View History

2021-03-27 17:21:45 +01:00
version: "3.8"
services:
2021-03-28 14:38:22 +02:00
app-fpm:
2021-03-27 17:21:45 +01:00
build: .
volumes:
2021-03-28 14:38:22 +02:00
- webroot:/var/www/html
#- drupal-modules:/var/www/html/modules
#- drupal-profiles:/var/www/html/profiles
#- drupal-sites:/var/www/html/sites
#- drupal-themes:/var/www/html/themes
tty: true
nginx:
image: nginx:latest
volumes:
- webroot:/var/www/html
- ./conf.d:/etc/nginx/conf.d
2021-03-27 17:21:45 +01:00
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:
2021-03-28 14:38:22 +02:00
webroot: