https://github.com/fbartels/zarafa-webmeetings-docker
Home of a Dockerfile to build a Docker image containing Zarafa Web Meetings
https://github.com/fbartels/zarafa-webmeetings-docker
Last synced: 9 days ago
JSON representation
Home of a Dockerfile to build a Docker image containing Zarafa Web Meetings
- Host: GitHub
- URL: https://github.com/fbartels/zarafa-webmeetings-docker
- Owner: fbartels
- Created: 2015-06-22T18:07:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T13:20:15.000Z (over 5 years ago)
- Last Synced: 2025-02-16T20:36:00.149Z (3 months ago)
- Language: Shell
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zarafa-webmeetings-docker
**Q: what’s the benefit of having this?**
Docker provides and easy and fast way to run virtual machines for testing purposes. You only have to give this to a customer, so that he can give Web Meetings a try in his local environment, with his actual data, but without having to change anything in his current environment.
**Q: what’s provided by this image?**
The image contains the latest released version of WebApp and Web Meetings, as well as zarafa-presence.
**Q: what do I have to do, to get this running?**
You need to have Docker installed. After this has been done you can simply
- pull the image from the [Docker Hub](https://hub.docker.com/)```docker pull fbartels/zarafa-webmeetings-docker```
- download the default configuration
```wget https://raw.githubusercontent.com/fbartels/zarafa-webmeetings-docker/master/env.conf```
- modify ```env.conf``` to point to your local Zarafa installation
- and then start the image```docker run -it --env-file=env.conf \
-p 10080:10080 -p 10443:10443 \
fbartels/zarafa-webmeetings-docker```If you only want to change ZARAFA_HOST the following command works as well:
```docker run -it -e ZARAFA_HOST=http://my-zarafa:236/zarafa \
-p 10080:10080 -p 10443:10443 \
fbartels/zarafa-webmeetings-docker```Just a few seconds after the last command has been issued you will be able to open the WebApp provided by the image (accessible from ```https://ip-of-your-docker-host:10443```), login and enjoy Zarafa Web Meetings.
## Building your own
This repository contains a small shell script to do a local build of this Dockerfile with the possiblity to directly start the image afterwards.