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
33 lines (27 loc) • 647 B
YAML
version: '3'
services:
mysql:
image: gorillajs/mariadb
expose:
- 3306
volumes:
- ../template:/root/templates
- {{docker.data_path}}/{{project.id}}/mysql:/var/lib/mysql
entrypoint:
- bin/sh
- /root/templates/entrypoint-mariadb.sh
web:
image: gorillajs/wordpress
ports:
- "{{docker.port}}:80"
volumes:
- ../template:/root/templates
- ../../application:/var/www/{{project.domain}}/application
entrypoint:
- bin/sh
- /root/templates/entrypoint-web.sh
container_name: {{project.domain}}
networks:
default:
external:
name: gorillajs