https://github.com/debianmaster/docker-hybris
This repo Explains how you can deploy SAP hybris on docker
https://github.com/debianmaster/docker-hybris
Last synced: 10 months ago
JSON representation
This repo Explains how you can deploy SAP hybris on docker
- Host: GitHub
- URL: https://github.com/debianmaster/docker-hybris
- Owner: debianmaster
- Created: 2016-06-13T20:45:11.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-13T21:18:03.000Z (about 10 years ago)
- Last Synced: 2025-04-13T10:49:21.858Z (about 1 year ago)
- Language: Shell
- Size: 813 KB
- Stars: 13
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: licenses/3rdParty/Icecat_License.rtf
Awesome Lists containing this project
README
### docker-hybris
> This repo Explains how you can deploy SAP hybris on docker
> Most of the source and ideas are copied from https://github.com/prelegalwonder/hybris-docker
> Changed few things to make it work for myself.
### Env setup
> Create a docker machine for testing
```sh
docker-machine create --virtualbox-disk-size 700000 --virtualbox-memory "4096" -d virtualbox dev
docker-machine start dev
eval "$(docker-machine env dev)"
```
### Build hybris image
```sh
git clone https://github.com/debianmaster/docker-hybris.git
cd docker-hybris
```
### Download hybris source zip
> Download hybris-commerce-suite-5.4.0.4.zip from wiki.hybris.org
> I saw a zip here, but i'm not sure if you can use it or not legally https://www.swiftcore.com/repo/ at your own risk
```sh
docker build -t "hybris" .
```
### Run hybris image
```sh
docker run -d -P hybris
```