Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Permission error; help needed with installation #3

Open
Ronaldho80 opened this issue Jun 1, 2018 · 3 comments
Open

Permission error; help needed with installation #3

Ronaldho80 opened this issue Jun 1, 2018 · 3 comments

Comments

@Ronaldho80
Copy link

First, I did not know how to use this repository. After a while, I thought, I just need to edit the docker-compose.yml file and make it run. So, I edited it like this:

version: '2'

networks:
    bibbox-default-network:
      external: true
      
services:

  seeddms:
    image: bibbox/seeddms
    container_name:  seeddms
    restart: unless-stopped
    networks:
      - bibbox-default-network
    links:
      - seeddms-db:seeddms-db
    ports:
      - "8888:80"
    depends_on:
      - seeddms-db
      - seeddms-data
    volumes_from: 
      - seeddms-data

  seeddms-db:
    image: mysql:5
    container_name: seeddms-db
    restart: unless-stopped
    networks:
      - bibbox-default-network
    user: root
    environment:
      - MYSQL_ROOT_PASSWORD=audi007
      - MYSQL_DATABASE=seeddms
      - MYSQL_USER=seeddms
      - MYSQL_PASSWORD=audi007
    volumes_from: 
      - seeddms-data
    depends_on:
      - seeddms-data

  seeddms-data:
    image: busybox
    container_name: seeddms-data
    volumes:
      - ./var/lib/mysql:/var/lib/mysql
      - ./var/www/seeddms51x/data:/var/www/seeddms51x/data

  • Then, I run docker-compose up and it told me to add the bibbox network manually.
  • I did this and again run docker-compose up.
  • I opened http://hans:8888/install and the installation screen opened.
  • I entered my chosen password: audi007 in the "Password:" text field
  • I clicked on "Create database tables"
  • I clicked on Apply
    Now, I got this error messages:
    image

Could you pls help me with the installation?

Thx a lot and best regards,
Ronny

@lomadi
Copy link
Contributor

lomadi commented Jun 1, 2018

Hi Ronny

these containers were build to be installed in BIBBOX, an framework for docker containers in life science. http://bibbox.readthedocs.io/en/latest/admin-documentation/

However, we are also plan to provide some standalone installers. I just made a docker-compose.yml you can use. https://github.com/bibbox/app-seeddms/blob/master/docker-compose.yml

The problem is also, that you need to generate the mounted directories before and give them the full writ e permissions, this is done in the https://github.com/bibbox/app-seeddms/blob/master/install.sh

Try the install.sh script

Further hits are in https://github.com/bibbox/app-seeddms/blob/master/INSTALL-APP.md

@lomadi
Copy link
Contributor

lomadi commented Jun 2, 2018

I changed the DOCKERFILE, and made an update to 5.1.7
@Ronaldho80 could you please test, if the script for local installation works

@Ronaldho80
Copy link
Author

Dear Heimo,
thx a lot for the fast update of the docker-compose.yml and adding an extra installation instruction and script. Thank you also for updating the Seeddms version which now supports workflows. This helps us a lot.

This is the best Docker image I found for Seeddms!

Cheers,
Ronny

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants