mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 02:39:33 +02:00
Create new Docker dev image (#1173)
* Move the old dev docker files to support/docker/janitor * Create new Docker dev image
This commit is contained in:
parent
e2dc00a8fe
commit
ee7c25c767
7 changed files with 90 additions and 16 deletions
6
support/docker/dev/setup_postgres.sql
Normal file
6
support/docker/dev/setup_postgres.sql
Normal file
|
@ -0,0 +1,6 @@
|
|||
create database peertube_dev;
|
||||
create user peertube password 'peertube';
|
||||
grant all privileges on database peertube_dev to peertube;
|
||||
\c peertube_dev
|
||||
CREATE EXTENSION pg_trgm;
|
||||
CREATE EXTENSION unaccent;
|
Loading…
Add table
Add a link
Reference in a new issue