start new:
tmux
start new with session name:
tmux new -s myname
| FROM php:7.0.4-fpm | |
| RUN apt-get update && apt-get install -y libmcrypt-dev \ | |
| mysql-client libmagickwand-dev --no-install-recommends \ | |
| && pecl install imagick \ | |
| && docker-php-ext-enable imagick \ | |
| && docker-php-ext-install mcrypt pdo_mysql |
| FROM nginx:1.10 | |
| ADD vhost.conf /etc/nginx/conf.d/default.conf |
| server { | |
| listen 80; | |
| index index.php index.html; | |
| root /var/www/public; | |
| location / { | |
| try_files $uri /index.php?$args; | |
| } | |
| location ~ \.php$ { |
| version: '2' | |
| services: | |
| # The Application | |
| app: | |
| build: | |
| context: ./ | |
| dockerfile: app.dockerfile | |
| working_dir: /var/www | |
| volumes: |
initialize: once, when the controller is first instantiatedconnect: anytime the controller is connected to the DOM