test development branch

This commit is contained in:
martelleur 2023-12-03 22:43:25 +01:00
parent f51bafb3fa
commit 3e26c012eb
2 changed files with 31 additions and 0 deletions

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
18.19.0

View File

@ -0,0 +1,30 @@
version: '3'
services:
postgresql:
image: bitnami/postgresql:latest
environment:
- POSTGRESQL_USERNAME=peertube
- POSTGRESQL_PASSWORD=peertube
- POSTGRESQL_DATABASE=peertube_dev
volumes:
- postgresql_data:/bitnami/postgresql
ports:
- "5432:5432"
redis:
image: bitnami/redis:latest
environment:
- ALLOW_EMPTY_PASSWORD=yes
#- REDIS_PASSWORD=my_redis_password
volumes:
- redis_data:/bitnami/redis
ports:
- "6379:6379"
volumes:
postgresql_data:
driver: local
redis_data:
driver: local