Docker and more calendar work
This commit is contained in:
parent
4527504c80
commit
f7a919ebf2
22 changed files with 2036 additions and 79 deletions
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- "5000:5000"
|
||||
volumes:
|
||||
- ./downloads:/app/downloads
|
||||
- ./instance:/app/instance
|
||||
environment:
|
||||
- FLASK_ENV=production
|
||||
- SECRET_KEY=change_this_to_a_secure_random_string
|
||||
- DATABASE_URI=sqlite:///instance/podcastrr.db
|
||||
- DOWNLOAD_PATH=/app/downloads
|
||||
- LOG_LEVEL=INFO
|
||||
restart: unless-stopped
|
Loading…
Add table
Add a link
Reference in a new issue