mtlynch/mediagoblin

By mtlynch

Updated over 4 years ago

Docker image for the MediaGoblin media server

Image
5

100K+

mtlynch/mediagoblin repository overview

Dockerized http://mediagoblin.org/

CircleCI Docker Pulls License: AGPL v3

QuickStart

docker run \
  --tty \
  --detach \
  --publish 8080:6543 \
  --name mediagoblin \
  mtlynch/mediagoblin

MediaGoblin will be available at http://localhost:8080

The default user is admin, password admin.

Run MediaGoblin with persistent state

To preserve data across container executions, run the following:

mkdir -p persist/srv/mediagoblin

docker run \
  --tty \
  --detach \
  --publish 8080:6543 \
  --volume "${PWD}/persist/srv/mediagoblin:/var/lib/mediagoblin" \
  --name mediagoblin \
  mtlynch/mediagoblin

MediaGoblin will be available at http://localhost:8080

The default user is admin, password admin.

MediaGoblin will save data to ./persist/srv/mediagoblin

Build container from source

To rebuild this container, copy this repository locally and run:

docker build --tag mediagoblin .

Tag summary

Content type

Image

Digest

Size

752.2 MB

Last updated

over 4 years ago

Requires Docker Desktop 4.37.1 or later.