2022-11-17 14:47:25 +01:00
|
|
|
services:
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/services/redis.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2022-11-17 14:47:25 +01:00
|
|
|
application:
|
2024-07-10 19:24:52 +02:00
|
|
|
image: chocobozzz/peertube:production-{{peertube_version}}
|
2022-11-17 14:47:25 +01:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
ports:
|
|
|
|
- "1935:1935"
|
|
|
|
- "{{http_port}}:9000"
|
|
|
|
volumes:
|
|
|
|
- assets:/app/client/dist
|
|
|
|
- data:/data
|
|
|
|
- config:/config
|
2023-12-31 11:14:18 +01:00
|
|
|
restart: "always"
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
|
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
2024-01-02 21:39:17 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
2022-11-17 14:47:25 +01:00
|
|
|
assets:
|
|
|
|
data:
|
|
|
|
redis:
|
2024-01-03 11:38:09 +01:00
|
|
|
config:
|
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|