DreamFactory is an open source REST API for mobile enterprise application developers. Add a REST API to any backend system. Services include SQL, NoSQL, BLOB, email, users, roles, security, and integration. Whether you’re building a native or web-based app, DreamFactory developers can focus on creating great front-ends to their apps, while leaving all the backend work to DreamFactory.
$ curl -LO https://raw.githubusercontent.com/bitnami/bitnami-docker-dreamfactory/master/docker-compose.yml
$ docker-compose up
To run this application you need Docker Engine >= 1.10.0
. Docker Compose is recommended with a version 1.6.0
or later.
DreamFactory requires access to a MySQL database or MariaDB database to store information. We'll use our very own MariaDB image for the database requirements. It also uses our [MongoDB image] (https://www.github.com/bitnami/bitnami-docker-mongodb) and [Redis image] (https://www.github.com/bitnami/bitnami-docker-redis).
The recommended way to run DreamFactory is using Docker Compose using the following docker-compose.yml
template:
version: '2'
services:
mariadb:
image: bitnami/mariadb:latest
volumes:
- mariadb_data:/bitnami/mariadb
environment:
- ALLOW_EMPTY_PASSWORD=yes
mongodb:
image: 'bitnami/mongodb:latest'
volumes:
- 'mongodb_data:/bitnami/mongodb'
redis:
image: 'bitnami/redis:latest'
volumes:
- 'redis_data:/bitnami/redis'
dreamfactory:
image: bitnami/dreamfactory:latest
depends_on:
- mariadb
- mongodb
- redis
ports:
- '80:80'
- '443:443'
volumes:
- dreamfactory_data:/bitnami/dreamfactory
- apache_data:/bitnami/apache
- php_data:/bitnami/php
volumes:
mariadb_data:
driver: local
mongodb_data:
driver: local
redis_data:
driver: local
dreamfactory_data:
driver: local
apache_data:
driver: local
php_data:
driver: local
Launch the containers using:
$ docker-compose up -d
If you want to run the application manually instead of using docker-compose
, these are the basic steps you need to run:
- Create a network
$ docker network create dreamfactory-tier
- Create a volume for MariaDB persistence and create a MariaDB container
$ docker volume create --name mariadb_data
$ docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes\
--net dreamfactory-tier \
--volume mariadb_data:/bitnami/mariadb \
bitnami/mariadb:latest
- Create a volume for MongoDB persistence and create a MongoDB container
$ docker volume create --name mongodb_data
$ docker run -d --name mongodb \
--net dreamfactory-tier \
--volume mongodb_data:/bitnami/mongodb \
bitnami/mongodb:latest
- Create a volume for Redis persistence and create a Redis container
$ docker volume create --name redis_data
$ docker run -d --name redis \
--net dreamfactory-tier \
--volume redis_data:/bitnami/redis \
bitnami/redis:latest
- Create volumes for DreamFactory persistence and launch the container
$ docker volume create --name dreamfactory_data
$ docker volume create --name apache_data
$ docker volume create --name php_data
$ docker run -d --name dreamfactory -p 80:80 -p 443:443 \
--net dreamfactory-tier \
--volume dreamfactory_data:/bitnami/dreamfactory \
--volume apache_data:/bitnami/apache \
--volume php_data:/bitnami/php \
bitnami/dreamfactory:latest
Access your application at http://your-ip/
For persistence of the DreamFactory deployment, the above examples define docker volumes namely mariadb_data
, mongodb_data
, redis_data
, dreamfactory_data
, apache_data
and php_data
. The DreamFactory application state will persist as long as these volumes are not removed.
To avoid inadvertent removal of these volumes you can mount host directories as data volumes. Alternatively you can make use of volume plugins to host the volume data.
The following docker-compose.yml
template demonstrates the use of host directories as data volumes.
version: '2'
services:
mariadb:
image: bitnami/mariadb:latest
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- /path/to/mariadb-persistence:/bitnami/mariadb
mongodb:
image: 'bitnami/mongodb:latest'
volumes:
- '/path/to/your/local/mongodb_data:/bitnami/mongodb'
redis:
image: 'bitnami/redis:latest'
volumes:
- '/path/to/your/local/redis_data:/bitnami/redis'
dreamfactory:
image: bitnami/dreamfactory:latest
depends_on:
- mariadb
- mongodb
- redis
ports:
- '80:80'
- '443:443'
volumes:
- /path/to/dreamfactory-persistence:/bitnami/dreamfactory
- /path/to/apache-persistence:/bitnami/apache
- /path/to/php-persistence:/bitnami/php
- Create a network (if it does not exist)
$ docker network create dreamfactory-tier
- Create a MariaDB container with host volume
$ docker run -d --name mariadb -e ALLOW_EMPTY_PASSWORD=yes \
--net dreamfactory-tier \
--volume /path/to/mariadb-persistence:/bitnami/mariadb \
bitnami/mariadb:latest
- Create a MongoDB container with host volume
$ docker run -d --name mongodb \
--net dreamfactory-tier \
--volume /path/to/mongodb-persistence:/bitnami/mongodb \
bitnami/mongodb:latest
- Create a Redis container with host volume
$ docker run -d --name redis \
--net dreamfactory-tier \
--volume /path/to/redis-persistence:/bitnami/redis \
bitnami/redis:latest
- Create the DreamFactory the container with host volumes
$ docker run -d --name dreamfactory -p 80:80 -p 443:443 \
--net dreamfactory-tier \
--volume /path/to/dreamfactory-persistence:/bitnami/dreamfactory \
--volume /path/to/apache-persistence:/bitnami/apache \
--volume /path/to/php-persistence:/bitnami/php \
bitnami/dreamfactory:latest
Bitnami provides up-to-date versions of MariaDB, MongoDB, Redis and DreamFactory, including security patches, soon after they are made upstream. We recommend that you follow these steps to upgrade your container. We will cover here the upgrade of the DreamFactory container. For the MariaDB upgrade see https://github.com/bitnami/bitnami-docker-mariadb/blob/master/README.md#upgrade-this-image. For the MongoDB upgrade see https://github.com/bitnami/bitnami-docker-mongodb/blob/master/README.md#upgrade-this-image. For the Redis upgrade see https://github.com/bitnami/bitnami-docker-redis/blob/master/README.md#upgrade-this-image
The bitnami/dreamfactory:latest
tag always points to the most recent release. To get the most recent release you can simple repull the latest
tag from the Docker Hub with docker pull bitnami/dreamfactory:latest
. However it is recommended to use tagged versions.
Get the updated image:
$ docker pull bitnami/dreamfactory:latest
- Stop the running DreamFactory container
$ docker-compose stop dreamfactory
- Remove the stopped container
$ docker-compose rm dreamfactory
- Launch the updated DreamFactory image
$ docker-compose start dreamfactory
- Stop the running DreamFactory container
$ docker stop dreamfactory
- Remove the stopped container
$ docker rm dreamfactory
- Launch the updated DreamFactory image
$ docker run -d --name dreamfactory -p 80:80 -p 443:443 \
--net dreamfactory-tier \
--volume dreamfactory_data:/bitnami/dreamfactory \
--volume apache_data:/bitnami/apache \
--volume php_data:/bitnami/php \
bitnami/dreamfactory:latest
NOTE:
The above command assumes that local docker volumes are in use. Edit the command according to your usage.
The DreamFactory instance can be customized by specifying environment variables on the first run. The following environment values are provided to custom DreamFactory:
MARIADB_USER
: Root user for the MariaDB database. Default: rootMARIADB_PASSWORD
: Root password for the MariaDB.MARIADB_HOST
: Hostname for MariaDB server. Default: mariadbMARIADB_PORT
: Port used by MariaDB server. Default: 3306MONGODB_HOST
: Hostname for Mongodb server. Default: mongodbMONGODB_PORT
: Port used by Mongodb server. Default: 27017REDIS_HOST
: Hostname for Redis. Default: redisREDIS_PORT
: Port used by Redis. Default: 6379REDIS_PASSWORD
: Password for Redis.SMTP_HOST
: Hostname for the SMTP server (necessary for sending e-mails from the application).SMTP_PORT
: Port for the SMTP server.SMTP_USER
: Username for the SMTP server.SMTP_PASSWORD
: SMTP account password.
version: '2'
services:
mariadb:
image: bitnami/mariadb:latest
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- mariadb_data:/bitnami/mariadb
mongodb:
image: bitnami/mongodb:latest
volumes:
- mongodb_data:/bitnami/mongodb
redis:
image: bitnami/redis:latest
volumes:
- redis_data:/bitnami/mariadb
dreamfactory:
image: bitnami/dreamfactory:latest
depends_on:
- mariadb
- mongodb
- redis
ports:
- '80:80'
- '443:443'
environment:
- DREAMFACTORY_PASSWORD=my_password
volumes:
- dreamfactory_data:/bitnami/dreamfactory
- apache_data:/bitnami/apache
- php_data:/bitnami/php
volumes:
mariadb_data:
driver: local
mongodb_data:
driver: local
redis_data:
driver: local
dreamfactory_data:
driver: local
apache_data:
driver: local
php_data:
driver: local
$ docker run -d --name dreamfactory -p 80:80 -p 443:443 \
--net dreamfactory-tier \
--env DREAMFACTORY_PASSWORD=my_password \
--volume dreamfactory_data:/bitnami/dreamfactory \
--volume apache_data:/bitnami/apache \
--volume php_data:/bitnami/php \
bitnami/dreamfactory:latest
To backup your application data follow these steps:
- Stop the DreamFactory container:
$ docker-compose stop dreamfactory
- Copy the DreamFactory, Apache and PHP data
$ docker cp $(docker-compose ps -q dreamfactory):/bitnami/dreamfactory/ /path/to/backups/dreamfactory/latest/
$ docker cp $(docker-compose ps -q dreamfactory):/bitnami/apache/ /path/to/backups/apache/latest/
$ docker cp $(docker-compose ps -q dreamfactory):/bitnami/php/ /path/to/backups/php/latest/
- Start the DreamFactory container
$ docker-compose start dreamfactory
- Stop the DreamFactory container:
$ docker stop dreamfactory
- Copy the DreamFactory, Apache and PHP data
$ docker cp dreamfactory:/bitnami/dreamfactory/ /path/to/backups/dreamfactory/latest/
$ docker cp dreamfactory:/bitnami/apache/ /path/to/backups/apache/latest/
$ docker cp dreamfactory:/bitnami/php/ /path/to/backups/php/latest/
- Start the DreamFactory container
$ docker start dreamfactory
To restore your application using backed up data simply mount the folder with DreamFactory, Apache and PHP data in the container. See persisting your application section for more info.
We'd love for you to contribute to this container. You can request new features by creating an issue, or submit a pull request with your contribution.
If you encountered a problem running this container, you can file an issue. For us to provide better support, be sure to include the following information in your issue:
- Host OS and version
- Docker version (
docker version
) - Output of
docker info
- Version of this container (
echo $BITNAMI_IMAGE_VERSION
inside the container) - The command you used to run the container, and any relevant output you saw (masking any sensitive information)
Copyright (c) 2017 Bitnami
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.