mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
28 lines
941 B
YAML
28 lines
941 B
YAML
# [GIMP](https://www.gimp.org/) is a free and open-source raster graphics editor
|
|
# used for image manipulation (retouching) and image editing, free-form drawing,
|
|
# transcoding between different image file formats, and more specialized tasks.
|
|
# It is extensible by means of plugins, and scriptable.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
gimp:
|
|
image: ghcr.io/linuxserver/gimp
|
|
container_name: gimp
|
|
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 local files and settings
|
|
- ${BASEDIR:-/volume1/docker}/gimp/config:/config
|
|
ports:
|
|
# GIMP desktop gui.
|
|
- 3000:3000
|
|
# GIMP desktop gui HTTPS.
|
|
- 3001:3001
|
|
restart: unless-stopped
|