mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
26 lines
825 B
YAML
26 lines
825 B
YAML
# [Audacity](https://www.audacityteam.org/) is an easy-to-use, multi-track audio
|
|
# editor and recorder. Developed by a group of volunteers as open source.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
audacity:
|
|
image: ghcr.io/linuxserver/audacity
|
|
container_name: audacity
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Users home directory in the container, stores program settings and images
|
|
- ${BASEDIR:-/volume1/docker}/audacity/config:/config
|
|
ports:
|
|
# Audacity desktop gui.
|
|
- 3000:3000
|
|
# Audacity desktop gui HTTPS.
|
|
- 3001:3001
|
|
restart: unless-stopped
|