diff options
author | Alex Auvolat <alex@adnab.me> | 2021-01-16 17:07:01 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-01-16 17:07:01 +0100 |
commit | c74dc92febd1841c8ea5ff31caab0f941d57527d (patch) | |
tree | d05a203d95cac988952799667ec43c327a5d9038 /app/docker-compose.yml | |
parent | 0c4ee40e01c95d7bf73236cbead5cc261f67eb9d (diff) | |
download | infrastructure-c74dc92febd1841c8ea5ff31caab0f941d57527d.tar.gz infrastructure-c74dc92febd1841c8ea5ff31caab0f941d57527d.zip |
Proposal: reorganize app/ folder by modules
Diffstat (limited to 'app/docker-compose.yml')
-rw-r--r-- | app/docker-compose.yml | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/app/docker-compose.yml b/app/docker-compose.yml new file mode 100644 index 0000000..df7fee4 --- /dev/null +++ b/app/docker-compose.yml @@ -0,0 +1,92 @@ +version: '3.4' +services: + + mariadb: + build: + context: ./seafile/build/mariadb + args: + VERSION: 4 # fake for now + image: superboum/amd64_mariadb:v4 + + # Instant Messaging + riot: + build: + context: ./im/build/riotweb + args: + # https://github.com/vector-im/riot-web/releases + VERSION: 1.7.16 + image: superboum/amd64_riotweb:v19 + + synapse: + build: + context: ./im/build/matrix-synapse + args: + # https://github.com/matrix-org/synapse/releases + VERSION: 1.25.0 + image: superboum/amd64_synapse:v40 + + # Email + sogo: + build: + context: ./email/build/sogo + args: + # fake for now + VERSION: 5.0.0 + image: superboum/amd64_sogo:v7 + + alps: + build: + context: ./email/build/alps + args: + VERSION: 5cef0aaff2b8b6ee3e00b566123517e241d8cfb8 + image: superboum/amd64_alps:v1 + + # VoIP + jitsi-meet: + build: + context: ./jitsi/build/jitsi-meet + args: + # https://github.com/jitsi/jitsi-meet + PREFIXV: stable/jitsi-meet_ + VERSION: 5390 + image: superboum/amd64_jitsi_meet:v3 + + jitsi-conference-focus: + build: + context: ./jitsi/build/jitsi-conference-focus + args: + # https://github.com/jitsi/jicofo + PREFIXV: stable/jitsi-meet_ + VERSION: 5390 + image: superboum/amd64_jitsi_conference_focus:v6 + + jitsi-videobridge: + build: + context: ./jitsi/build/jitsi-videobridge + args: + # https://github.com/jitsi/jitsi-videobridge + PREFIXV: stable/jitsi-meet_ + VERSION: 5390 + image: superboum/amd64_jitsi_videobridge:v16 + + jitsi-xmpp: + build: + context: ./jitsi/build/jitsi-xmpp + args: + VERSION: 0.11.2-1 + image: superboum/amd64_jitsi_xmpp:v8 + + plume: + build: + context: ./plume/build/plume + args: + VERSION: 0.6.0 + image: superboum/plume:v2 + + postfix: + build: + context: ./email/build/postfix + args: + # https://packages.debian.org/fr/buster/postfix + VERSION: 3.4.14-0+deb10u1 + image: superboum/amd64_postfix:v3 |