Docker container for flox
This repository has been archived on 2024-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
Ivan Schaller bbfd70238c
Some checks reported errors
continuous-integration/drone/tag Build was killed
init
2022-04-16 01:25:32 +02:00
rootfs/etc init 2022-04-16 01:25:32 +02:00
.drone.yml init 2022-04-16 01:25:32 +02:00
.gitignore init 2022-04-16 01:25:32 +02:00
CHANGELOG.md init 2022-04-16 01:25:32 +02:00
docker-compose.yml init 2022-04-16 01:25:32 +02:00
Dockerfile.amd64 init 2022-04-16 01:25:32 +02:00
Dockerfile.arm64 init 2022-04-16 01:25:32 +02:00
LICENSE.md init 2022-04-16 01:25:32 +02:00
manifest.tmpl init 2022-04-16 01:25:32 +02:00
README.md init 2022-04-16 01:25:32 +02:00

flox-dockerized

Build Status

This is a docker container for the flox watchlist. Be sure to check out the original project: https://github.com/devfake/flox

Flox is a self hosted Movie, Series and Animes watch list. It's build on top of Laravel and Vue.js and uses The Movie Database API. The rating based on an 3-Point system for good, medium and bad.

Try live demo and login with demo / demo to add new stuff or change ratings.

drawing

Running the container

This image is available for arm64 and amd64. The right version for you system will automatically be pulled.

This container only exposes port 80/tcp. It is advised to run this configuration through a reverse proxy providing SSL if the service will be exposed over the internet. Data is saved in the container at /flox.

To use the container you will need to set the env variable tmdb_api_key with your own TheMovieDatabase API key. It is also recommended that you set flox_admin_pass. On first startup you also need to set flox_db_init to true.


An minimal configuration example would be:

# with docker run
cd <project_root>
docker run -p '80:80' --volume '/<data-directory>/:/flox/' -e tmdb_api_key=<key> -e flox_db_init=true --name flox olofvndrhr:flox-dockerized:latest
# with docker-compose (be sure to check all environment variables and change when neccesary)
cd <project_root>
nano docker-compose.yml # set tmdb_api_key & flox_db_init
docker-compose pull
docker-compose up -d

In order to create an admin user you will need to run an initial migration. This can be done by running the container once with the environment variable flox_db_init=true. If the env variables flox_username and flox_password are not set, the default login is: admin:admin.

You can then connect to http://localhost to access the application. If you mounted the data directory, all changes will be saved through container recreation.

In the data directory is a file called .lock. This file controls whether or not to "reset" all application data. So don't remove the file unless you want to reset you installation. The removed data will still be available in the running container in the directory /tmp/flox until you remove the container. After a reset you need to start the container with flox_db_init=true again.


Supportet environment variables

Name Description
tmdb_api_key (required) The TMDB API key to use - required for startup (https://developers.themoviedb.org/3/getting-started/introduction)
flox_db_init (required) Run db initialization at container startup (default: false)
flox_app_url The url you will be hosting the app on (default: http://localhost)
flox_username Inital username. Will not be overwritten after the initialization
flox_password Initial password. Will not be overwritten after the initialization
flox_client_uri The relative path you are hosting on (default: /)
flox_timezone The timezone flox is running in (default: UTC)
flox_daily_reminder_time The daily reminder time (default: 10:00)
flox_weekly_reminder_time The weekly reminder time (default: 20:00)
puid Unix user id to run the container as (default 4444)
pgid Unix group id to run the container as (default 4444)
flox_mail_driver Mail driver (most likely smtp)
flox_mail_host Hostname of the mail server
flox_mail_port Port of the mail server (smtp port)
flox_mail_from Email address from which flox sends the mails
flox_mail_username User name on the mail server
flox_mail_password User password
flox_mail_encryption Encryption type (tls,ssl,none)

Contribution

Like this project? Want to contribute? Awesome! Feel free to open some pull requests or just open an issue.

Changelogs

Changelogs can be found here. But they may be not fully detailled.

License

Flox is published under the MIT license. See LICENSE for more information. All credits to devfake