setup a drupal cms with docker compose file

yaml docker docker-compose 4 years, 6 months ago
version: '3' services: drupal: image: drupal ports: - "8000:80" 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 postgres: image: postgres environment: - POSTGRES_PASSWORD=mypasswd volumes: drupal-modules: drupal-profiles: drupal-sites: drupal-themes:
897
Instructions

Run
docker-compose up

Then you can go to your http://localhost:8000

Posted By