mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
33 lines
628 B
Django/Jinja
33 lines
628 B
Django/Jinja
version: "3.3"
|
|
|
|
services:
|
|
application:
|
|
image: chocobozzz/peertube:production-bullseye
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "1935:1935"
|
|
- "{{http_port}}:9000"
|
|
volumes:
|
|
- assets:/app/client/dist
|
|
- data:/data
|
|
- config:/config
|
|
restart: "always"
|
|
depends_on:
|
|
- redis
|
|
{% if not enable_central_database %}
|
|
- database
|
|
|
|
{% include 'templates/docker-service-{{ database_type }}.yml.j2' %}
|
|
{% endif %}
|
|
|
|
{% include 'templates/docker-service-redis.yml.j2' %}
|
|
|
|
env_file:
|
|
- .env
|
|
|
|
{% include 'templates/docker-compose-volumes.yml.j2' %}
|
|
assets:
|
|
data:
|
|
redis:
|
|
config: |