Skip to content
This repository has been archived by the owner on Nov 10, 2021. It is now read-only.

michalsvorc/docker-gimp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GIMP Docker image

  • based on Alpine Linux
  • executable Docker image
  • persistent application settings in mounted directories
  • edge APK repository

Start

Use docker.sh script in project directory.

  1. Build Docker image: execute ./docker.sh build.

  2. Run Docker image: execute ./docker.sh run.

Docker container is not removed after exiting the application. To start the container again, execute ./docker.sh start.

Mount directories

  • profile: GIMP profile directory
  • workspace: share files between the host and containerized app

Troubleshooting

Write access to mounted directories

Mount directories must be writable by group with id 1000. Execute these commands in project root directory:

chown -R $(id -u):1000 "${PWD}"/profile "${PWD}"/workspace
chmod -R g+w "${PWD}"/profile "${PWD}"/workspace