Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pascalgrimaud/generator-jhipster-docker
:whale: JHipster module, additional Docker support in your JHipster application
https://github.com/pascalgrimaud/generator-jhipster-docker
docker docker-compose jhipster jhipster-module
Last synced: 14 days ago
JSON representation
:whale: JHipster module, additional Docker support in your JHipster application
- Host: GitHub
- URL: https://github.com/pascalgrimaud/generator-jhipster-docker
- Owner: pascalgrimaud
- License: apache-2.0
- Created: 2015-12-06T17:10:21.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T19:48:19.000Z (almost 2 years ago)
- Last Synced: 2024-03-15T09:08:39.379Z (8 months ago)
- Topics: docker, docker-compose, jhipster, jhipster-module
- Language: JavaScript
- Homepage:
- Size: 638 KB
- Stars: 57
- Watchers: 8
- Forks: 7
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# generator-jhipster-docker
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url]> JHipster module, additional Docker support in your JHipster application
# Introduction
This is a [JHipster](http://www.jhipster.tech/) module, that is meant to be used in a JHipster application. This module is used to generate a:
- Dockerfile for Automated build at [Docker Hub](https://hub.docker.com/)
- Docker Compose file for using a Local SMTP Server with [MailDev](https://github.com/djfarrelly/MailDev/)
- Docker Compose file for using NGinx as proxy server# Table of contents
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [With Yarn](#with-yarn)
- [With NPM](#with-npm)
- [Usage](#usage)
- [1 - Automated build at the Docker Hub](#1---automated-build-at-the-docker-hub)
- [1.1 - Description](#11---description)
- [1.2 - Generate the files](#12---generate-the-files)
- [1.3 - Set your Docker Hub project](#13---set-your-docker-hub-project)
- [At GitHub](#at-github)
- [At Docker Hub](#at-docker-hub)
- [2 - Local SMTP Server](#2---local-smtp-server)
- [3 - NGinx as proxy server](#3---nginx-as-proxy-server)
- [License](#license)# Prerequisites
As this is a [JHipster](http://www.jhipster.tech/) module, we expect you have JHipster and its related tools already installed:
- [Installing JHipster](http://www.jhipster.tech/installation/)
You have to install Docker and Docker Compose:
- [Docker](https://docs.docker.com/installation/#installation)
- [Docker Compose](https://docs.docker.com/compose/install)To use *Automated build*, you have to create an account at:
- [https://hub.docker.com/](https://hub.docker.com/)
# Installation
## With Yarn
To install this module:
```bash
yarn global add generator-jhipster-docker
```To update this module:
```bash
yarn global upgrade generator-jhipster-docker
```## With NPM
To install this module:
```bash
npm install -g generator-jhipster-docker
```To update this module:
```bash
npm update -g generator-jhipster-docker
```# Usage
To run the module on a JHipster generated application:
```bash
yo jhipster-docker
```You can use this command to generate the Dockerfile for Automated build:
```bash
yo jhipster-docker default
```To force the generator:
```bash
yo jhipster-docker default --force
```## 1 - Automated build at the [Docker Hub](https://hub.docker.com)
### 1.1 - Description
When using the option *Dockerfile for Automated build*, [Docker Hub](https://hub.docker.com) will build a Docker image everytime you commit to your repository.
### 1.2 - Generate the files
- Launch : `yo jhipster-docker`
- Select the option : `Dockerfile for Automated build at https://hub.docker.com/`### 1.3 - Set your Docker Hub project
#### At GitHub
- Go to Settings > Integrations & services
- Add service and select Docker
- Click [x] active
- Click on update service
- Back to Integration & services, Docker must be :white_check_mark: Docker#### At Docker Hub
- Go to [https://hub.docker.com/r/YOUR_DOCKER_ID/](https://hub.docker.com/r/YOUR_DOCKER_ID/) (replace `YOUR_DOCKER_ID` by yours)
- Menu Create
- Select Create Automated Build
- Select the repository of your project
- Put a description, then click on create- Go to Build Settings
- Choose your branch or let master by default
- Put this Dockerfile location: /
- Click on Save Changes- Return to this project: git commit and push these changes!
- Go to Build details: it should be a new line with Building## 2 - Local SMTP Server
The project [djfarrelly/maildev](https://github.com/djfarrelly/MailDev) is a simple way to test your project’s generated emails during development with an easy to use web interface.
You can launch:
```bash
docker-compose -f src/main/docker/smtp.yml up -d
```You can access to it: [http://localhost:1080](http://localhost:1080)
## 3 - NGinx as proxy server
See the official [documentation](http://www.jhipster.tech/separating-front-end-and-api/)
Follow these steps:
- Start your local backend server or use an existing one. You can start more than 1 backend server.
- Edit `src/main/docker/nginx/nginx.conf`, depending on the 1st step
- Start NGinx:```bash
docker-compose -f src/main/docker/nginx.yml up -d
```**Note**:
The use of `network_mode: 'host'` in `nginx.yml` may not work for Windows or MacOS.
Simply comment it and replace `localhost` in `src/main/docker/nginx/nginx.conf` file.
Your container (from inside) must access to the application.You can access to it: [http://localhost](http://localhost) or [http://localhost:8000](http://localhost/8000)
# License
Apache-2.0 © [Pascal Grimaud](https://twitter.com/pascalgrimaud) and the respective JHipster contributors
[npm-image]: https://img.shields.io/npm/v/generator-jhipster-docker.svg
[npm-url]: https://npmjs.org/package/generator-jhipster-docker
[travis-image]: https://travis-ci.org/pascalgrimaud/generator-jhipster-docker.svg?branch=master
[travis-url]: https://travis-ci.org/pascalgrimaud/generator-jhipster-docker
[daviddm-image]: https://david-dm.org/pascalgrimaud/generator-jhipster-docker.svg?theme=shields.io
[daviddm-url]: https://david-dm.org/pascalgrimaud/generator-jhipster-docker