Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tripal/docker-tripal-centos
Docker container for Tripal 2 and Tripal 3
https://github.com/tripal/docker-tripal-centos
deprecated docker-container-tripal tripal-v2 tripal-v3
Last synced: 3 days ago
JSON representation
Docker container for Tripal 2 and Tripal 3
- Host: GitHub
- URL: https://github.com/tripal/docker-tripal-centos
- Owner: tripal
- License: gpl-3.0
- Created: 2016-11-22T16:33:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-31T21:50:02.000Z (about 6 years ago)
- Last Synced: 2024-12-23T03:08:49.434Z (about 2 months ago)
- Topics: deprecated, docker-container-tripal, tripal-v2, tripal-v3
- Language: PHP
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deprecated
This repository is deprecated! Please use the [Statonlab Docker Containers repository](https://github.com/statonlab/docker-containers) instead.
# Tripal docker images
This repository builds docker images for Tripal v2 and Tripal v3 installed upon Drupal 7.56 with PostGreSQL database.
# Launch Tripal site
The two docker images are available from [Docker hub](https://hub.docker.com/).
* Docker image for Tripal 2: `mingchen0919/docker-tripal-v2`
* Docker image for Tripal 3: `mingchen0919/docker-tripal-v3`## Launch a Tripal 2 site
The command line below will launch an interactive docker container with a Tripal 2 site displayed on [http://127.0.0.1:8080/](http://127.0.0.1:8080/)
```
docker run -it -p 8080:80 mingchen0919/docker-tripal-v2 /bin/bash
```## Account names and passwords for Tripal 2 site
* Tripal site admin username: `admin`
* Tripal site password: `admin`
* Postgres database name: `tripal_db`
* Postgres database username: `tripal`
* Postgres database password: `tripal_db_passwd`## Launch a Tripal 3 site
The command line below will launch an interactive docker container with a Tripal 3 site displayed on [http://127.0.0.1:8080/](http://127.0.0.1:8080/)
```
docker run -it -p 8080:80 mingchen0919/docker-tripal-v3 /bin/bash
```## Account names and passwords for Tripal 3 site
* Tripal site admin username: `admin`
* Tripal site password: `P@55w0rd`
* Postgres database name: `tripal_db`
* Postgres database username: `tripal`
* Postgres database password: `tripal_db_passwd`## Restart httpd
Sometimes when you stop the docker container and then restart it, the httpd may stop working. To restart httpd, run the following command within the container:
```
/usr/sbin/httpd
```