All checks were successful
Build Docker Image / build (push) Successful in 12m39s
12 lines
527 B
Plaintext
12 lines
527 B
Plaintext
LISTEN_ADDRESS=0.0.0.0 # Lisen on all interfaces
|
|
LISTEN_PORT=8080 # Internal port number
|
|
MPV_SOCKET=/tmp/mpvsocket # Path to mpv socket
|
|
LOGLEVEL=info
|
|
|
|
# Options:
|
|
# mysql+pymysql://<user>:<password>@<host>[:<port>]/<dbname> - works with MySQL and Mariadb
|
|
# postgresql+psycopg2://user:password@host:port/dbname[?key=value&key=value...]
|
|
# sqlite:///path
|
|
# oracle+oracledb://user:pass@hostname:port[/dbname][?service_name=<service>[&key=value&key=value...]]
|
|
SQLALCHEMY_DATABASE_URI=mysql+pymysql://user:password@localhost:3306/mpv
|