You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
772 B
YAML

# [Muximux](https://github.com/mescon/Muximux) is a lightweight portal to view &
# manage your HTPC apps without having to run anything more than a PHP enabled
# webserver. With Muximux you don't need to keep multiple tabs open, or bookmark
# the URL to all of your apps.
---
version: "2.1"
services:
muximux:
image: ghcr.io/linuxserver/muximux
container_name: muximux
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Where muximux should store its files.
- ${BASEDIR:-/volume1/docker}/muximux/config:/config
ports:
# WebUI
- 80:80
restart: unless-stopped