项目作者: open-museum

项目描述 :
Omeka S is a web publishing platform for digital cultural heritage collections.
高级语言: Dockerfile
项目地址: git://github.com/open-museum/omeka-s-docker.git
创建时间: 2020-04-01T09:48:06Z
项目社区:https://github.com/open-museum/omeka-s-docker

开源协议:MIT License

下载


Omeka S Docker

⚠️ This repository is outdated and has been archived.

Omeka S is a web publishing platform for digital cultural heritage collections.

GitHub issues
GitHub forks
GitHub stars
GitHub license

Installation

Install Docker.

Go to example

Copy and edit .env.example

  1. cd example
  2. cp .env.example .env
  3. nano .env

Export environment variables and use setup.sh to create database.ini and set permissions

  1. cd example
  2. source .env
  3. bash setup.sh

If you want to start a local development instance, use docker-compose.dev.yml.

  1. cd example
  2. docker-compose --file docker-compose.dev.yml up -d

Usage

Start Omeka S

  1. cd example
  2. docker-compose up -d

If your installation complains about not being able to write to the folder files, fix permissions accordingly.

  1. cd example
  2. chown -R www-data:www-data files logs modules themes

If you run your installation in production edit `example/Dockerfile accordingly.

  1. FROM openmuseum/omeka-s
  2. COPY ./config/.htaccess-production /usr/src/omeka-s/.htaccess
  3. COPY ./config/database.ini /usr/src/omeka-s/config/database.ini
  4. COPY ./config/local.config-production.php /usr/src/omeka-s/config/local.config.php
  5. COPY ./config/php-production.ini /usr/local/etc/php/php.ini
  6. RUN service apache2 restart

Stop Omeka S

  1. cd example
  2. docker-compose up -d

Install EasyInstall to make your life more easy

  1. cd example
  2. cd modules
  3. curl -L -o EasyInstall-3.2.5.zip "https://github.com/Daniel-KM/Omeka-S-module-EasyInstall/releases/download/3.2.5/EasyInstall-3.2.5.zip"
  4. unzip EasyInstall-3.2.5.zip
  5. rm EasyInstall-3.2.5.zip

Support

This project is maintained by @maehr. Please understand that we won’t be able to provide individual support via email. We also believe that help is much more valuable if it’s shared publicly, so that more people can benefit from it.

Type Platforms
🚨 Bug Reports GitHub Issue Tracker
🎁 Feature Requests GitHub Issue Tracker
🛡 Report a security vulnerability GitHub Issue Tracker

Roadmap

No changes are currently planned.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors and acknowledgment

  • Moritz Mähr - Initial work - maehr

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details