ce696bad8b
- added memcached container (currently develop branch needed) - put all zammad services in one kubernetes pod to be able to use empty dir volume for tmp - switched to kubernetes deployments - switched to ReadWriteOnce kubernetes volume claims - added init container to elasticsearch & zammad kubernetes deployments - added IMAGE_REPO var for docker compose to .env file - run nginx from zammad container (preparation for stateless updates) - removed docker-compose-build.yml - use private docker repos in compose & kubernetes - change compose volume names
123 lines
2.8 KiB
YAML
123 lines
2.8 KiB
YAML
version: '3.3'
|
|
|
|
services:
|
|
|
|
zammad-backup:
|
|
command: ["zammad-backup"]
|
|
depends_on:
|
|
- zammad-railsserver
|
|
entrypoint: /usr/local/bin/backup.sh
|
|
image: ${IMAGE_REPO}:zammad-postgresql${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
links:
|
|
- zammad-postgresql
|
|
restart: always
|
|
volumes:
|
|
- zammad-backup:/var/tmp/zammad
|
|
- zammad-data:/opt/zammad
|
|
|
|
zammad-elasticsearch:
|
|
image: ${IMAGE_REPO}:zammad-elasticsearch${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
restart: always
|
|
volumes:
|
|
- elasticsearch-data:/usr/share/elasticsearch/data
|
|
|
|
zammad-init:
|
|
command: ["zammad-init"]
|
|
depends_on:
|
|
- zammad-postgresql
|
|
image: ${IMAGE_REPO}:zammad${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
links:
|
|
- zammad-elasticsearch
|
|
- zammad-postgresql
|
|
restart: on-failure
|
|
volumes:
|
|
- zammad-data:/opt/zammad
|
|
|
|
zammad-memcached:
|
|
command: ["zammad-memcached"]
|
|
image: ${IMAGE_REPO}:zammad-memcached${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
restart: always
|
|
|
|
zammad-nginx:
|
|
command: ["zammad-nginx"]
|
|
depends_on:
|
|
- zammad-railsserver
|
|
image: ${IMAGE_REPO}:zammad${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
links:
|
|
- zammad-railsserver
|
|
- zammad-websocket
|
|
restart: always
|
|
volumes:
|
|
- zammad-data:/opt/zammad
|
|
|
|
zammad-postgresql:
|
|
image: ${IMAGE_REPO}:zammad-postgresql${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
restart: always
|
|
|
|
zammad-railsserver:
|
|
command: ["zammad-railsserver"]
|
|
depends_on:
|
|
- zammad-memcached
|
|
- zammad-postgresql
|
|
image: ${IMAGE_REPO}:zammad${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
links:
|
|
- zammad-elasticsearch
|
|
- zammad-memcached
|
|
- zammad-postgresql
|
|
restart: always
|
|
volumes:
|
|
- zammad-data:/opt/zammad
|
|
|
|
zammad-scheduler:
|
|
command: ["zammad-scheduler"]
|
|
depends_on:
|
|
- zammad-memcached
|
|
- zammad-railsserver
|
|
image: ${IMAGE_REPO}:zammad${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
links:
|
|
- zammad-elasticsearch
|
|
- zammad-memcached
|
|
- zammad-postgresql
|
|
restart: always
|
|
volumes:
|
|
- zammad-data:/opt/zammad
|
|
|
|
zammad-websocket:
|
|
command: ["zammad-websocket"]
|
|
depends_on:
|
|
- zammad-memcached
|
|
- zammad-railsserver
|
|
image: ${IMAGE_REPO}:zammad${VERSION}
|
|
labels:
|
|
io.rancher.container.pull_image: always
|
|
links:
|
|
- zammad-postgresql
|
|
- zammad-memcached
|
|
restart: always
|
|
volumes:
|
|
- zammad-data:/opt/zammad
|
|
|
|
volumes:
|
|
elasticsearch-data:
|
|
driver: local
|
|
zammad-backup:
|
|
driver: local
|
|
zammad-data:
|
|
driver: local
|