merged with 2.20

This commit is contained in:
David Baldwynn 2017-11-23 18:53:16 -08:00
commit 6838fa94e3
5 changed files with 67 additions and 2 deletions

21
Dockerfile-dev Normal file
View file

@ -0,0 +1,21 @@
# Build:
# docker build -t tellform-prod -f ./Dockerfile-production .
#
# Run:
# docker run -it tellform-prod
FROM node:7
MAINTAINER David Baldwynn <team@tellform.com>
# Install NPM Global Libraries
RUN npm install --quiet -g grunt bower && npm cache clean
ADD . /code
WORKDIR /code
RUN npm install --quiet
RUN bower install --interactive-mode=false --allow-root
RUN grunt build
# Run TellForm server
CMD ["grunt"]

View file

@ -1,7 +1,7 @@
{
"name": "tellform",
"description": "Opensource alternative to TypeForm",
"version": "2.0.0",
"version": "2.2.0",
"homepage": "https://github.com/tellform/tellform",
"authors": [
"David Baldwynn <polydaic@gmail.com> (http://baldwynn.me)"

44
docker-compose.yaml Normal file
View file

@ -0,0 +1,44 @@
version: "3"
services:
tellform:
build:
context: .
dockerfile: ./Dockerfile-dev
volumes:
- .:/code
ports:
- "5000:5000"
- 587:587
env_file:
- .env
links:
- mongo
- redis
depends_on:
- mongo
- redis
redis:
restart: always
image: redis
volumes:
- "$ROOT/redis:/data"
ports:
- "6379:6379"
web:
image: tellform/nginx:stable
restart: always
ports:
- "80:80"
- "443:443"
- "20523:20523"
env_file:
- .env
volumes:
- "$ROOT/certs:/certs"
mongo:
restart: always
image: mongo
volumes:
- "$ROOT/mongo:/data"
ports:
- "27107:27107"

BIN
dump.rdb

Binary file not shown.

View file

@ -1,7 +1,7 @@
{
"name": "TellForm",
"description": "Opensource alternative to TypeForm",
"version": "2.1.0",
"version": "2.2.0",
"homepage": "https://github.com/tellform/tellform",
"authors": [
"David Baldwynn <polydaic@gmail.com> (http://baldwynn.me)"