mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-25 03:38:59 +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' %}
|
||||
|
||||
image: docker.io/akaunting/akaunting:{{applications.akaunting.version}}
|
||||
image: {{ applications[application_id].images.application }}
|
||||
build:
|
||||
context: .
|
||||
ports:
|
||||
|
@ -1,12 +1,13 @@
|
||||
version: "latest"
|
||||
company_name: "{{primary_domain}}"
|
||||
company_email: "{{users.administrator.email}}"
|
||||
setup_admin_email: "{{users.administrator.email}}"
|
||||
images:
|
||||
application: "docker.io/akaunting/akaunting:latest"
|
||||
company_name: "{{primary_domain}}"
|
||||
company_email: "{{users.administrator.email}}"
|
||||
setup_admin_email: "{{users.administrator.email}}"
|
||||
features:
|
||||
matomo: true
|
||||
css: true
|
||||
portfolio_iframe: false
|
||||
central_database: true
|
||||
matomo: true
|
||||
css: true
|
||||
portfolio_iframe: false
|
||||
central_database: true
|
||||
credentials:
|
||||
domains:
|
||||
canonical:
|
||||
|
@ -5,7 +5,7 @@ services:
|
||||
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
|
||||
|
||||
web:
|
||||
image: "attendize_web:{{applications.attendize.version}}"
|
||||
image: "{{ applications[application_id].images.web }}"
|
||||
ports:
|
||||
- "{{ports.localhost.http[application_id]}}:80"
|
||||
volumes:
|
||||
@ -19,7 +19,7 @@ services:
|
||||
{% include 'templates/docker/container/networks.yml.j2' %}
|
||||
|
||||
worker:
|
||||
image: "attendize_worker:{{applications.attendize.version}}"
|
||||
image: "{{ applications[application_id].images.worker }}"
|
||||
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
||||
maildev:
|
||||
{% include 'templates/docker/container/networks.yml.j2' %}
|
||||
|
@ -1,4 +1,6 @@
|
||||
version: "latest"
|
||||
image:
|
||||
web: "attendize_web:latest"
|
||||
worker: "attendize_worker:latest"
|
||||
credentials:
|
||||
features:
|
||||
matomo: true
|
||||
|
@ -6,7 +6,7 @@ services:
|
||||
|
||||
application:
|
||||
{% 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
|
||||
volumes:
|
||||
- data:/baserow/data
|
||||
|
@ -1,4 +1,5 @@
|
||||
version: "latest"
|
||||
images:
|
||||
application: "baserow/baserow:latest"
|
||||
features:
|
||||
matomo: true
|
||||
css: true
|
||||
|
@ -1,6 +1,6 @@
|
||||
services:
|
||||
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' %}
|
||||
volumes:
|
||||
- pds_data:/opt/pds
|
||||
|
@ -1,6 +1,8 @@
|
||||
users:
|
||||
administrator:
|
||||
email: "{{users.administrator.email}}"
|
||||
images:
|
||||
pds: "ghcr.io/bluesky-social/pds:latest"
|
||||
pds:
|
||||
version: "latest"
|
||||
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
|
||||
|
||||
## todo
|
||||
|
@ -1,4 +1,2 @@
|
||||
user: turnuser
|
||||
credentials:
|
||||
# password: # Need to be defined in invetory file
|
||||
# secret: # Need to be defined in invetory file
|
||||
user: turnuser
|
||||
credentials:
|
Loading…
x
Reference in New Issue
Block a user