chore: mount local data dir for development

This commit is contained in:
jo 2023-02-22 15:33:48 +01:00 committed by Kyle Robbertze
parent 7955316f71
commit 676aabe046
3 changed files with 6 additions and 0 deletions

4
.gitignore vendored
View File

@ -8,8 +8,12 @@
*~ *~
VERSION VERSION
/docker/data/playout/*
/website/ /website/
!.gitkeep
## Github Python .gitignore ## Github Python .gitignore
## See https://github.com/github/gitignore/blob/master/Python.gitignore ## See https://github.com/github/gitignore/blob/master/Python.gitignore
################################################################################ ################################################################################

View File

@ -21,6 +21,7 @@ services:
target: libretime-playout target: libretime-playout
volumes: volumes:
- ./playout:/src - ./playout:/src
- ./docker/data/playout:/app
liquidsoap: liquidsoap:
build: build:
@ -30,6 +31,7 @@ services:
- 1234:1234 - 1234:1234
volumes: volumes:
- ./playout:/src - ./playout:/src
- ./docker/data/playout:/app
analyzer: analyzer:
build: build:

View File