Skip to content
This repository has been archived by the owner on Mar 23, 2020. It is now read-only.

Latest commit

 

History

History
34 lines (22 loc) · 639 Bytes

docker-readme.md

File metadata and controls

34 lines (22 loc) · 639 Bytes

Installation

Mac & Windows

Install Docker CE for Mac and Windows (http://docker.com)

Ubuntu

To install Docker CE follow the instructions given here:

https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/

Install docker-compose

    $ sudo apt install docker-compose

Run app

Make sure to run ./build to make sure docker container can load build artificats from dist directory

    $ docker-compose build
    $ docker-compose up 

To run in deamon mode: docker-compose up -d

Navigate to http://localhost:8080

Stopping docker-compose

    $ docker-compose down