Added docker compose generator if docker is enabled (#175)

* Added docker compose generator if docker is enabled

* Fixed version to 3.3

* fixed name in to_yaml.js

* Apply suggestions from code review

Co-authored-by: Matt (IPv4) Cowley <me@mattcowley.co.uk>
This commit is contained in:
Alessandro Manno
2020-10-09 18:52:22 +02:00
committed by GitHub
parent 4306666e82
commit 02e72a7003
8 changed files with 206 additions and 86 deletions

View File

@@ -36,6 +36,7 @@ export default {
letsEncrypt: 'Let\'s Encrypt',
python: 'Python',
docker: 'Docker',
dockerCompose: 'Docker Compose',
wordPress: 'WordPress',
drupal: 'Drupal',
magento: 'Magento',

View File

@@ -28,4 +28,5 @@ import common from '../../common';
export default {
dockerfile: `Include Dockerfile to run nginx with ${common.docker}`,
dockerCompose: 'Include docker-compose to run nginx with docker-compose',
};