mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-25 11:45:32 +02:00
Changed coturn to image until coturn
This commit is contained in:
parent
cdfd464bce
commit
9e19a050a6
@ -6,7 +6,7 @@ services:
|
|||||||
|
|
||||||
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
|
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
|
||||||
|
|
||||||
image: docker.io/akaunting/akaunting:{{applications.akaunting.version}}
|
image: {{ applications[application_id].images.application }}
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
ports:
|
ports:
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
version: "latest"
|
images:
|
||||||
|
application: "docker.io/akaunting/akaunting:latest"
|
||||||
company_name: "{{primary_domain}}"
|
company_name: "{{primary_domain}}"
|
||||||
company_email: "{{users.administrator.email}}"
|
company_email: "{{users.administrator.email}}"
|
||||||
setup_admin_email: "{{users.administrator.email}}"
|
setup_admin_email: "{{users.administrator.email}}"
|
||||||
|
@ -5,7 +5,7 @@ services:
|
|||||||
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
|
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
|
||||||
|
|
||||||
web:
|
web:
|
||||||
image: "attendize_web:{{applications.attendize.version}}"
|
image: "{{ applications[application_id].images.web }}"
|
||||||
ports:
|
ports:
|
||||||
- "{{ports.localhost.http[application_id]}}:80"
|
- "{{ports.localhost.http[application_id]}}:80"
|
||||||
volumes:
|
volumes:
|
||||||
@ -19,7 +19,7 @@ services:
|
|||||||
{% include 'templates/docker/container/networks.yml.j2' %}
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
||||||
|
|
||||||
worker:
|
worker:
|
||||||
image: "attendize_worker:{{applications.attendize.version}}"
|
image: "{{ applications[application_id].images.worker }}"
|
||||||
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
||||||
maildev:
|
maildev:
|
||||||
{% include 'templates/docker/container/networks.yml.j2' %}
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
version: "latest"
|
image:
|
||||||
|
web: "attendize_web:latest"
|
||||||
|
worker: "attendize_worker:latest"
|
||||||
credentials:
|
credentials:
|
||||||
features:
|
features:
|
||||||
matomo: true
|
matomo: true
|
||||||
|
@ -6,7 +6,7 @@ services:
|
|||||||
|
|
||||||
application:
|
application:
|
||||||
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
|
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
|
||||||
image: "baserow/baserow:{{applications.baserow.version}}"
|
image: "{{ applications[application_id].images.application }}"
|
||||||
container_name: baserow-application
|
container_name: baserow-application
|
||||||
volumes:
|
volumes:
|
||||||
- data:/baserow/data
|
- data:/baserow/data
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
version: "latest"
|
images:
|
||||||
|
application: "baserow/baserow:latest"
|
||||||
features:
|
features:
|
||||||
matomo: true
|
matomo: true
|
||||||
css: true
|
css: true
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
pds:
|
pds:
|
||||||
image: "ghcr.io/bluesky-social/pds:{{applications.bluesky.pds.version}}"
|
image: "{{ applications[application_id].images.pds }}"
|
||||||
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
|
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
|
||||||
volumes:
|
volumes:
|
||||||
- pds_data:/opt/pds
|
- pds_data:/opt/pds
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
users:
|
users:
|
||||||
administrator:
|
administrator:
|
||||||
email: "{{users.administrator.email}}"
|
email: "{{users.administrator.email}}"
|
||||||
|
images:
|
||||||
|
pds: "ghcr.io/bluesky-social/pds:latest"
|
||||||
pds:
|
pds:
|
||||||
version: "latest"
|
version: "latest"
|
||||||
credentials:
|
credentials:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# DRAFT role docker-coturn
|
# Coturn Server (DRAFT)
|
||||||
setup an coturn server based on https://hub.docker.com/r/coturn/coturn
|
setup an coturn server based on https://hub.docker.com/r/coturn/coturn
|
||||||
|
|
||||||
## todo
|
## todo
|
||||||
|
@ -1,4 +1,2 @@
|
|||||||
user: turnuser
|
user: turnuser
|
||||||
credentials:
|
credentials:
|
||||||
# password: # Need to be defined in invetory file
|
|
||||||
# secret: # Need to be defined in invetory file
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user