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

djocker/orocrm

Repository files navigation

DEPRECATED! The solution has been replaced by the following tool: https://github.com/digitalspacestdio/homebrew-docker-compose-oroplatform

OROCRM Docker Image

GitHub Tag Layers Docker Pulls Build Status

The docker image with source code of OroCRM application. This image is used as part of docker stack (see compose configs).

Requirements

  1. Docker
  2. Docker Compose

Usage

OroCRM stack with automated installation

Run containers in attached mode

$ docker-compose -f docker-compose-auto.yml up

Run containers in detached mode

$ docker-compose -f docker-compose-auto.yml up -d

Navigate to http://localhost:3080 or http://localhost:3080/admin in your web browser (default admin login/password: admin / admin1111)

Stop containers

$ docker-compose -f docker-compose-auto.yml stop

Remove containers

$ docker-compose -f docker-compose-auto.yml down

OroCRM stack with web installation

Run containers in attached mode

$ docker-compose -f docker-compose.yml up

Run containers in detached mode

$ docker-compose -f docker-compose.yml up -d

Navigate to http://localhost:3080 in your web browser, and install application via web wizard

Stop containers

$ docker-compose -f docker-compose.yml stop

Remove containers

$ docker-compose -f docker-compose.yml down