Sign inSign up

karunais13/resourcespace-nginx

By karunais13

•Updated about 3 years ago

A docker image for ResourceSpace based on Ubuntu 20.04 LTS including OpenCV, poppler, nginx and php.

Image
0

308

karunais13/resourcespace-nginx repository overview

image

⁠Resourcespace-Nginx-Docker

Docker Pulls

A docker image for ResourceSpace based on Ubuntu 20.04 LTS including OpenCV, poppler, nginx and php.

⁠Version (latest)
  • ResourceSpace - 10.2
  • PHP - 8.2
  • Nginx - 1.18.0
⁠Installed pkgs are:
nano 
ufw 
imagemagick 
nginx 
subversion 
ghostscript 
antiword 
poppler-utils 
libimage-exiftool-perl 
cron 
postfix 
wget 
php8.1 
php8.1-dev 
php8.1-gd 
php8.1-mysqlnd 
php8.1-mbstring 
php8.1-zip 
php8.1-cli 
php8.1-fpm 
php8.1-mysql 
ffmpeg 
libopencv-dev 
python3-opencv 
python3 
python3-pip 
net-tools 
sudo 
supervisor 

⁠Requirements

  • Mysql or MariaDB

⁠Docker Compose Sample

version: '3.8'
services:
  mariadb:
    image: mariadb:latest
    restart: unless-stopped
    container_name: db_resource_hub
    volumes:
      # Database storage
      - db_volume:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=secret
      - MYSQL_USER=demo
      - MYSQL_PASSWORD=demo
      - MYSQL_DATABASE=demo_db
    networks:
      - local_network
  resourcespace:
    image: karunais13/resourcespace-nginx:latest
    restart: unless-stopped
    volumes:
      - include:/var/www/resourcespace/include
      - filestore:/var/www/resourcespace/filestore
    ports:
      - 80:80
    networks:
      - local_network
networks:
  local_network:
    name: resource_space_network
    driver: bridge
volumes:
  db_volume:
    name: resource_space_db
  include:
    name : include
  filestore:
    name : filestore

Tag summary

Content type

Image

Digest

sha256:f7d7b521f…

Size

770.2 MB

Last updated

about 3 years ago

docker pull karunais13/resourcespace-nginx