49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
# Phase-2 stubs — NOT started by default.
|
|
# Usage (after images exist):
|
|
# cd ~/koopa-meet && podman-compose -f compose.yml -f compose.phase2.yml up -d
|
|
#
|
|
# Do not pull official docker-jitsi-meet Debian images as the default base.
|
|
# Build CachyOS (or pinned binary) images under configs/meet/phase2/ when ready.
|
|
|
|
services:
|
|
prosody:
|
|
profiles: ["phase2"]
|
|
image: localhost/koopa-meet-prosody:cachyos
|
|
container_name: koopa-meet-prosody
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Zurich
|
|
# ports / volumes: fill when Containerfile exists
|
|
labels:
|
|
org.hacktivism.service: meet-prosody
|
|
org.hacktivism.site: meet.hacktivism.ch
|
|
org.hacktivism.phase: "2"
|
|
|
|
jicofo:
|
|
profiles: ["phase2"]
|
|
image: localhost/koopa-meet-jicofo:cachyos
|
|
container_name: koopa-meet-jicofo
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Zurich
|
|
depends_on:
|
|
- prosody
|
|
labels:
|
|
org.hacktivism.service: meet-jicofo
|
|
org.hacktivism.site: meet.hacktivism.ch
|
|
org.hacktivism.phase: "2"
|
|
|
|
jvb:
|
|
profiles: ["phase2"]
|
|
image: localhost/koopa-meet-jvb:cachyos
|
|
container_name: koopa-meet-jvb
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Zurich
|
|
# UDP host publish TBD in ports.md when allocated
|
|
depends_on:
|
|
- prosody
|
|
labels:
|
|
org.hacktivism.service: meet-jvb
|
|
org.hacktivism.site: meet.hacktivism.ch
|
|
org.hacktivism.phase: "2"
|