Last active
May 21, 2018 19:15
-
-
Save lmakarov/2178041907b249b5ce756857c5b11e52 to your computer and use it in GitHub Desktop.
Play with Docksal on PWD (Play with Docker)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -L get.docksal.io | CI=true DOCKSAL_VERSION=feature/alpine bash | |
fin system reset | |
addgroup docker | |
adduser docker -D -G docker -s /bin/bash | |
mkdir projects | |
cd projects | |
git clone https://github.com/docksal/drupal8.git | |
chown -R docker:docker drupal8 | |
cd drupal8 | |
`.docksal/docksal.yml`: | |
``` | |
version: "2.1" | |
services: | |
web: | |
labels: | |
- io.docksal.virtual-host=${VIRTUAL_HOST}.* | |
``` | |
fin init |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment