Skip to content
This repository has been archived by the owner on May 18, 2022. It is now read-only.

Pressed-Juicery/base

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reaction Base - A base Docker image for Reaction Commerce

Circle CI

Build

Add the following to a Dockerfile in the root of your Reaction Commerce project:

FROM reactioncommerce/base:latest

Then you can build the image with:

docker build -t reactioncommerce/reaction:latest .

Run

Use docker-compose to run the app. A demo docker-compose file is included in the Reaction repo.

Run this command to start the app:

docker-compose -f docker-compose-demo.yml up

Build Options

This base image supports setting custom build options that let you modify what gets installed. You can use Docker build args to accomplish this.

To change the version of Meteor that gets installed, you can specify a version as below:

docker build \
  --build-arg METEOR_VERSION=1.4.2 \
  -t myorg/myapp:latest .

License

MIT License