talking-drupal-tailwindcss/docker-compose.yaml

28 lines
451 B
YAML
Raw Permalink Normal View History

2022-06-07 21:00:00 +00:00
services:
web:
build:
context: .
dockerfile: tools/docker/Dockerfile
target: web
volumes:
- .:/app
- assets:/app/public/build
working_dir: /app
ports:
- "${DOCKER_WEB_PORT:-127.0.0.1:80}:80"
depends_on:
- php
2022-08-17 21:47:59 +00:00
env_file:
- .env
2022-06-07 21:00:00 +00:00
php:
build:
context: .
dockerfile: tools/docker/Dockerfile
target: php-fpm
volumes:
- .:/app
volumes:
assets: {}