Skip to content

Instantly share code, notes, and snippets.

View madscatter's full-sized avatar

madscatter madscatter

View GitHub Profile
version: '3.7'
services:
drupal:
image: drupal:latest
networks:
drupal_net:
volumes:
- drupal-vol-modules:/var/www/html/modules
- drupal-vol-profiles:/var/www/html/profiles
- drupal-vol-themes:/var/www/html/themes
#!/bin/bash
pgVolumes=("./data/postgres")
drupalVolumes=("./data/html/modules" "./data/html/profiles" "./data/html/themes" "./data/html/sites")
makeDirs() {
for path in "$@"
do
echo "Creating \"$path\" ..."
mkdir -p "$path"
module Main exposing (main)
import Html exposing (..)
type alias Model =
{ name : String }
type Msg