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.
flox-dockerized/docker-compose.yml

28 lines
575 B
YAML
Raw Normal View History

2022-04-16 01:25:32 +02:00
version: "3"
services:
flox:
image: olofvndrhr/flox-dockerized:latest
container_name: flox-watchlist
restart: unless-stopped
security_opt:
- no-new-privileges:true
ports:
- 80:80
networks:
- appnet
volumes:
- ./data/:/flox/
environment:
- TZ=Europe/Zurich
- PUID=4444 # custom userid
- PGID=4444 # custom groupid
- tmdb_api_key= # (required) The TMDB API key to use
- flox_init=true # run db initialization at container startup
networks:
appnet:
name: appnet
driver: bridge