mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
35 lines
630 B
Django/Jinja
35 lines
630 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-postgres-service.yml.j2' %}
|
|
{% endif %}
|
|
|
|
{% include 'templates/docker-redis-service.yml.j2' %}
|
|
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
assets:
|
|
{% if not enable_central_database %}
|
|
database:
|
|
{% endif %}
|
|
data:
|
|
redis:
|
|
config: |