mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-13 12:17:24 +00:00
25 lines
786 B
YAML
25 lines
786 B
YAML
version: '3'
|
|
|
|
# You can add any necessary service here that will join the same docker network
|
|
# sharing the OIDC provider. Services added to the 'meet_resource-server'
|
|
# network will be able to communicate with dex (through nginx) and the backend
|
|
# on that network.
|
|
services:
|
|
# busybox service is only used for testing purposes. It provides curl to test
|
|
# connectivity to the backend and the OIDC provider. Replace this with your
|
|
# relevant application services that need to communicate with them.
|
|
busybox:
|
|
image: alpine:latest
|
|
privileged: true
|
|
command: sh -c "apk add --no-cache curl && sleep infinity"
|
|
stdin_open: true
|
|
tty: true
|
|
networks:
|
|
- default
|
|
- meet_resource-server
|
|
|
|
networks:
|
|
default: {}
|
|
meet_resource-server:
|
|
external: true
|