mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
28 lines
700 B
Django/Jinja
28 lines
700 B
Django/Jinja
services:
|
|
|
|
{% include 'templates/docker/services/redis.yml.j2' %}
|
|
|
|
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
|
|
|
|
application:
|
|
image: chocobozzz/peertube:production-{{peertube_version}}
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "1935:1935"
|
|
- "{{http_port}}:9000"
|
|
volumes:
|
|
- assets:/app/client/dist
|
|
- data:/data
|
|
- config:/config
|
|
restart: "always"
|
|
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
|
|
|
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
|
assets:
|
|
data:
|
|
redis:
|
|
config:
|
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %} |