added zammad to catalog
This commit is contained in:
parent
d4f83acad5
commit
cde4fa2142
83
templates/zammad/0/docker-compose.yml
Normal file
83
templates/zammad/0/docker-compose.yml
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
version: '2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
elasticsearch:
|
||||||
|
image: zammad/zammad-docker-compose:elasticsearch
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
nginx:
|
||||||
|
depends_on:
|
||||||
|
- zammad
|
||||||
|
image: zammad/zammad-docker-compose:nginx
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
links:
|
||||||
|
- zammad-railsserver
|
||||||
|
- zammad-websocket
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- data-zammad:/home/zammad
|
||||||
|
|
||||||
|
postgresql:
|
||||||
|
image: zammad/zammad-docker-compose:postgresql
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
zammad:
|
||||||
|
image: zammad/zammad-docker-compose:zammad
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
io.rancher.container.start_once: 'true'
|
||||||
|
restart: on-failure
|
||||||
|
volumes:
|
||||||
|
- data-zammad:/home/zammad
|
||||||
|
|
||||||
|
zammad-railsserver:
|
||||||
|
image: zammad/zammad-docker-compose:zammad-railsserver
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
links:
|
||||||
|
- elasticsearch
|
||||||
|
- postgresql
|
||||||
|
- zammad
|
||||||
|
depends_on:
|
||||||
|
- elasticsearch
|
||||||
|
- postgresql
|
||||||
|
- zammad
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
zammad-scheduler:
|
||||||
|
image: zammad/zammad-docker-compose:zammad-scheduler
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
links:
|
||||||
|
- elasticsearch
|
||||||
|
- postgresql
|
||||||
|
- zammad
|
||||||
|
depends_on:
|
||||||
|
- elasticsearch
|
||||||
|
- postgresql
|
||||||
|
- zammad
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
zammad-websocket:
|
||||||
|
image: zammad/zammad-docker-compose:zammad-websocket
|
||||||
|
labels:
|
||||||
|
io.rancher.container.pull_image: always
|
||||||
|
links:
|
||||||
|
- postgresql
|
||||||
|
- zammad
|
||||||
|
depends_on:
|
||||||
|
- postgresql
|
||||||
|
- zammad
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
data-zammad:
|
||||||
|
driver: local
|
31
templates/zammad/0/rancher-compose.yml
Normal file
31
templates/zammad/0/rancher-compose.yml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
version: '2'
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
elasticsearch:
|
||||||
|
scale: 1
|
||||||
|
start_on_create: true
|
||||||
|
|
||||||
|
nginx:
|
||||||
|
scale: 1
|
||||||
|
start_on_create: true
|
||||||
|
|
||||||
|
postgresql:
|
||||||
|
scale: 1
|
||||||
|
start_on_create: true
|
||||||
|
|
||||||
|
zammad:
|
||||||
|
scale: 1
|
||||||
|
start_on_create: true
|
||||||
|
|
||||||
|
zammad-scheduler:
|
||||||
|
scale: 1
|
||||||
|
start_on_create: true
|
||||||
|
|
||||||
|
zammad-railsserver:
|
||||||
|
scale: 1
|
||||||
|
start_on_create: true
|
||||||
|
|
||||||
|
zammad-websocket:
|
||||||
|
scale: 1
|
||||||
|
start_on_create: true
|
47
templates/zammad/README.md
Normal file
47
templates/zammad/README.md
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# Welcome to Zammad
|
||||||
|
|
||||||
|
Zammad is a web based open source helpdesk/customer support system with many
|
||||||
|
features to manage customer communication via several channels like telephone,
|
||||||
|
facebook, twitter, chat and e-mails. It is distributed under the GNU AFFERO
|
||||||
|
General Public License (AGPL) and tested on Linux, Solaris, AIX, FreeBSD,
|
||||||
|
OpenBSD and Mac OS 10.x. Do you receive many e-mails and want to answer them
|
||||||
|
with a team of agents?
|
||||||
|
|
||||||
|
You're going to love Zammad!
|
||||||
|
|
||||||
|
## Statusbadges
|
||||||
|
|
||||||
|
- Build: [](https://travis-ci.org/zammad/zammad)
|
||||||
|
- Code: [](https://codeclimate.com/github/zammad/zammad) [](https://coveralls.io/github/zammad/zammad)
|
||||||
|
- Docs: [](https://docs.zammad.org)
|
||||||
|
- Issues: [](https://github.com/zammad/zammad/issues "Percentage of issues still open") [](https://github.com/zammad/zammad/issues?q=is%3Aissue+is%3Aclosed "Average time to resolve an issue")
|
||||||
|
- Download DEB/RPM: [](https://packager.io/gh/zammad/zammad#develop) [](https://packager.io/gh/zammad/zammad#stable)
|
||||||
|
- Docker multi container image: [](https://microbadger.com/images/zammad/zammad-docker-compose:zammad) [](https://hub.docker.com/r/zammad/zammad-docker-compose)
|
||||||
|
- Docker single container image: [](https://microbadger.com/images/zammad/zammad) [](https://hub.docker.com/r/zammad/zammad/)
|
||||||
|
- Vagrant: [](https://github.com/zammad/zammad-vagrant)
|
||||||
|
- License: [](https://github.com/zammad/zammad/blob/develop/LICENSE)
|
||||||
|
|
||||||
|
## Installing & Getting Started
|
||||||
|
|
||||||
|
https://docs.zammad.org
|
||||||
|
|
||||||
|
|
||||||
|
## Screenshots
|
||||||
|
|
||||||
|
https://zammad.org/screenshots
|
||||||
|
|
||||||
|
|
||||||
|
## REST API
|
||||||
|
|
||||||
|
https://docs.zammad.org/en/latest/api-intro.html
|
||||||
|
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
https://zammad.org/participate
|
||||||
|
|
||||||
|
|
||||||
|
Thanks! ❤️ ❤️ ❤️
|
||||||
|
|
||||||
|
Your Zammad Team
|
||||||
|
|
BIN
templates/zammad/catalogIcon-zammad.png
Normal file
BIN
templates/zammad/catalogIcon-zammad.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
6
templates/zammad/config.yml
Normal file
6
templates/zammad/config.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
name: Zammad
|
||||||
|
description: |
|
||||||
|
Zammad is a web based open source helpdesk/customer support system
|
||||||
|
version: 1.2
|
||||||
|
category: Ticketsystems
|
||||||
|
maintainer: info@zammad.org
|
Loading…
x
Reference in New Issue
Block a user