gorillajs
Version:
A smart development environment designed to easily install and neatly manage web applications. Gorilla JS frees you from the repetitive daily tasks like apps installation, database management, creation of virtual environment, server configuration… And it
27 lines (21 loc) • 484 B
YAML
version: '3'
services:
mysql:
image: gorillajs/mysql
expose:
- 3306
volumes:
- ../{{docker.templatefolder}}:/root/templates
- ../../data:/var/lib/mysql
web:
image: gorillajs/apache-base
ports:
- "{{docker.port}}:80"
volumes:
- ../{{docker.templatefolder}}:/root/templates
- ../../src:/var/www/{{project.domain}}/src
container_name: {{project.domain}}
networks:
default:
external:
name: gorillajs