generated from coop-cloud/example
Trying Agora bootstrap as an independent container, as per:
https://git.coopcloud.tech/coop-cloud/rocketchat/src/branch/main/compose.yml#L73-L89
This commit is contained in:
parent
99be040e48
commit
439d80665a
13
.env.sample
13
.env.sample
@ -1,8 +1,19 @@
|
|||||||
TYPE=agora
|
TYPE=agora
|
||||||
|
|
||||||
DOMAIN=agor.ai
|
DOMAIN=example.agor.ai
|
||||||
|
|
||||||
## Domain aliases
|
## Domain aliases
|
||||||
#EXTRA_DOMAINS=', `www.agora.example.com`'
|
#EXTRA_DOMAINS=', `www.agora.example.com`'
|
||||||
|
|
||||||
LETS_ENCRYPT_ENV=production
|
LETS_ENCRYPT_ENV=production
|
||||||
|
|
||||||
|
# The username to run services as in containers.
|
||||||
|
AGORA_USER=agora
|
||||||
|
|
||||||
|
# A git repository containing an Agora root -- meaning at least a sources.yaml or agora.yaml file
|
||||||
|
AGORA_GIT=https://github.com/flancian/agora
|
||||||
|
|
||||||
|
# The local path where the Agora root will be cloned if necessary. Agora Bridge writes here, Agora Server (mostly) reads.
|
||||||
|
AGORA_PATH=/home/$AGORA_USER/agora
|
||||||
|
|
||||||
|
|
||||||
|
45
compose.yml
45
compose.yml
@ -2,8 +2,17 @@
|
|||||||
version: "3.8"
|
version: "3.8"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
server:
|
||||||
image: git.coopcloud.tech/flancian/agora
|
environment:
|
||||||
|
- AGORA_USER=$AGORA_USER
|
||||||
|
- AGORA_PATH=$AGORA_PATH
|
||||||
|
$AGORA_PATH
|
||||||
|
- AGORA_GIT=$AGORA_GIT
|
||||||
|
image: git.coopcloud.tech/flancian/agora-server
|
||||||
|
volumes:
|
||||||
|
- data:$AGORA_PATH
|
||||||
|
ports:
|
||||||
|
- 5017:5017
|
||||||
networks:
|
networks:
|
||||||
- proxy
|
- proxy
|
||||||
deploy:
|
deploy:
|
||||||
@ -27,7 +36,39 @@ services:
|
|||||||
# timeout: 10s
|
# timeout: 10s
|
||||||
# retries: 10
|
# retries: 10
|
||||||
# start_period: 1m
|
# start_period: 1m
|
||||||
|
|
||||||
|
bridge:
|
||||||
|
environment:
|
||||||
|
- AGORA_USER=$AGORA_USER
|
||||||
|
- AGORA_PATH=$AGORA_PATH
|
||||||
|
$AGORA_PATH
|
||||||
|
- AGORA_GIT=$AGORA_GIT
|
||||||
|
image: git.coopcloud.tech/flancian/agora-bridge
|
||||||
|
volumes:
|
||||||
|
- data:$AGORA_PATH
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
delay: 30s
|
||||||
|
|
||||||
|
# This is meant to run once at the seeding of the Agora, when the AGORA_ROOT (volume) is found empty.
|
||||||
|
# It will clone a git repository into the designated location.
|
||||||
|
bootstrap:
|
||||||
|
environment:
|
||||||
|
- AGORA_USER=$AGORA_USER
|
||||||
|
- AGORA_PATH=$AGORA_PATH
|
||||||
|
$AGORA_PATH
|
||||||
|
- AGORA_GIT=$AGORA_GIT
|
||||||
|
image: git.coopcloud.tech/flancian/agora-bridge
|
||||||
|
volumes:
|
||||||
|
- data:$AGORA_PATH
|
||||||
|
deploy:
|
||||||
|
restart_policy:
|
||||||
|
delay: 30s
|
||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
proxy:
|
proxy:
|
||||||
external: true
|
external: true
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
data:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user