Mercurial > libervia-backend
annotate docker/docker-compose-e2e.yml @ 3998:402d31527af4
plugin app manager: `start` doesn't wait anymore for actual app start:
Application may be long to start (e.g. a Docker app may have to download images first,
and even without the downloading, the starting could be long), which may lead to UI
blocking or bridge time out.
To prevent that, `start` is now returning immediately, and 2 new signals are used to
indicate when the application is started, of if something wrong happened.
`start` now returns initial app data, including exposed data without the computed exposed
data. The computed data must be retrieved after the app has been started.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 04 Mar 2023 18:30:47 +0100 |
parents | 87caf6284c55 |
children |
rev | line source |
---|---|
3381 | 1 version: "3.6" |
2 services: | |
3 | |
4 prosody: | |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
5 image: libervia/prosody:e2e |
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
6 build: prosody-e2e |
3381 | 7 depends_on: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
8 # we need to depend on backend to get IP address of the container for conf |
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
9 - backend |
3695
87caf6284c55
docker (prosody): don't use `tmpfs` for `/var/lib/prosody` (it prevents the container to start)
Goffi <goffi@goffi.org>
parents:
3691
diff
changeset
|
10 tmpfs: /var/log/prosody |
3381 | 11 networks: |
12 default: | |
13 aliases: | |
14 - server1.test | |
15 - server2.test | |
16 - server3.test | |
17 | |
18 db: | |
19 image: postgres | |
20 environment: | |
21 POSTGRES_PASSWORD: test_e2e | |
22 POSTGRES_DB: pubsub | |
23 tmpfs: /var/lib/postgresql/data | |
24 | |
25 pubsub: | |
26 build: pubsub | |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
27 image: libervia/pubsub |
3381 | 28 depends_on: |
29 - db | |
30 - prosody | |
31 environment: | |
32 PGHOST: db | |
33 PGUSER: postgres | |
34 PGPASSWORD: test_e2e | |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
35 LIBERVIA_PUBSUB_RHOST: server1.test |
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
36 LIBERVIA_PUBSUB_JID: pubsub.server1.test |
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
37 LIBERVIA_PUBSUB_XMPP_PWD: test_e2e |
3381 | 38 |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
39 backend: |
3641
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
40 image: libervia/backend:${DOCKER_LIBERVIA_REV:-dev}-e2e |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
41 build: |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
42 context: backend-dev-e2e |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
43 args: |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
44 REVISION: ${DOCKER_LIBERVIA_REV:-} |
3387
b3e7e3c49d8f
docker (compose): test environment variable + network alias:
Goffi <goffi@goffi.org>
parents:
3381
diff
changeset
|
45 environment: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
46 LIBERVIA_TEST_ENV_E2E: "1" |
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
47 LIBERVIA_TEST_ENV_E2E_WEB: "1" |
3432
d9955bb10d15
docker (e2e): use shared volume for SàT's local dir:
Goffi <goffi@goffi.org>
parents:
3429
diff
changeset
|
48 volumes: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
49 - libervia_data:/home/libervia/.local/share/libervia |
3429
d4558f3cbf13
tests, docker(e2e): added e2e tests for Libervia:
Goffi <goffi@goffi.org>
parents:
3423
diff
changeset
|
50 ports: |
d4558f3cbf13
tests, docker(e2e): added e2e tests for Libervia:
Goffi <goffi@goffi.org>
parents:
3423
diff
changeset
|
51 # VNC server for Libervia e2e tests visual mode |
d4558f3cbf13
tests, docker(e2e): added e2e tests for Libervia:
Goffi <goffi@goffi.org>
parents:
3423
diff
changeset
|
52 - 5900 |
3387
b3e7e3c49d8f
docker (compose): test environment variable + network alias:
Goffi <goffi@goffi.org>
parents:
3381
diff
changeset
|
53 networks: |
b3e7e3c49d8f
docker (compose): test environment variable + network alias:
Goffi <goffi@goffi.org>
parents:
3381
diff
changeset
|
54 default: |
b3e7e3c49d8f
docker (compose): test environment variable + network alias:
Goffi <goffi@goffi.org>
parents:
3381
diff
changeset
|
55 aliases: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
56 - libervia-backend.test |
3423
0653be94ee5e
docker: added libervia e2e image and include it in `docker-compose_e2e`:
Goffi <goffi@goffi.org>
parents:
3387
diff
changeset
|
57 |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
58 web: |
3641
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
59 image: libervia/web:${DOCKER_LIBERVIA_REV:-dev}-e2e |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
60 build: |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
61 context: libervia-web-dev-e2e |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
62 args: |
0ffaa231138c
docker: Libervia revision can now be specified:
Goffi <goffi@goffi.org>
parents:
3497
diff
changeset
|
63 REVISION: ${DOCKER_LIBERVIA_REV:-} |
3423
0653be94ee5e
docker: added libervia e2e image and include it in `docker-compose_e2e`:
Goffi <goffi@goffi.org>
parents:
3387
diff
changeset
|
64 depends_on: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
65 - backend |
3423
0653be94ee5e
docker: added libervia e2e image and include it in `docker-compose_e2e`:
Goffi <goffi@goffi.org>
parents:
3387
diff
changeset
|
66 environment: |
0653be94ee5e
docker: added libervia e2e image and include it in `docker-compose_e2e`:
Goffi <goffi@goffi.org>
parents:
3387
diff
changeset
|
67 LIBERVIA_PASSPHRASE: test_e2e |
3432
d9955bb10d15
docker (e2e): use shared volume for SàT's local dir:
Goffi <goffi@goffi.org>
parents:
3429
diff
changeset
|
68 volumes: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
69 - libervia_data:/home/libervia/.local/share/libervia |
3423
0653be94ee5e
docker: added libervia e2e image and include it in `docker-compose_e2e`:
Goffi <goffi@goffi.org>
parents:
3387
diff
changeset
|
70 ports: |
0653be94ee5e
docker: added libervia e2e image and include it in `docker-compose_e2e`:
Goffi <goffi@goffi.org>
parents:
3387
diff
changeset
|
71 - "8080" |
0653be94ee5e
docker: added libervia e2e image and include it in `docker-compose_e2e`:
Goffi <goffi@goffi.org>
parents:
3387
diff
changeset
|
72 - "8443" |
3429
d4558f3cbf13
tests, docker(e2e): added e2e tests for Libervia:
Goffi <goffi@goffi.org>
parents:
3423
diff
changeset
|
73 networks: |
d4558f3cbf13
tests, docker(e2e): added e2e tests for Libervia:
Goffi <goffi@goffi.org>
parents:
3423
diff
changeset
|
74 default: |
d4558f3cbf13
tests, docker(e2e): added e2e tests for Libervia:
Goffi <goffi@goffi.org>
parents:
3423
diff
changeset
|
75 aliases: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
76 - libervia-web.test |
3432
d9955bb10d15
docker (e2e): use shared volume for SàT's local dir:
Goffi <goffi@goffi.org>
parents:
3429
diff
changeset
|
77 |
d9955bb10d15
docker (e2e): use shared volume for SàT's local dir:
Goffi <goffi@goffi.org>
parents:
3429
diff
changeset
|
78 volumes: |
3497
73e04040d577
docker: update following name changes:
Goffi <goffi@goffi.org>
parents:
3432
diff
changeset
|
79 libervia_data: |