Based on TACTIC.
TACTIC is a dynamic, open-source, web-based platform used for building enterprise solutions. It combines elements of traditional DAM, PAM, CMS and workflow management systems to optimize busy work environments. Read more at Southpaw Technology web site
This docker image is intended as an easy all in one installation to start experimenting with tactic including a postgresql server and an apache server. For a production server it is better to run tactic, postgresql and apache into different containers
This repository contains the basic elements for the content management system of PESSCARA.
Things included:
-
A Tactic instance than can be deployed based o a docker file:
To deploy follow the steps be executing the commands:
- docker build . -t tactic ( This will take some time)
- docker images (Will list all the images select the most recent one)
- docker run -d --name tactic-p 10080:80 -p 10081:22 -e ROOT_PASSWORD="test" tactic > If link 3. docker run -d --name tactic --link receive:receive-p 10080:80 -p 10081:22 -e ROOT_PASSWORD="test" tactic
Tactic is up and running, you can visit localhost:10080 and start setting up the project details or ssh to your docker by ssh root@localhost -p 10081 or shell access.
-
The tactic client library (tactic_client_lib)
-
A wrapper library to simplify interaction based on our predefined schema (tiPY)
We have created a project schema suitable for medical image analysis.The file name of the current schema is:
```qin-1.0.0.zip```
Modified or newly created schema can be exported and reused in new installations as template.Modifications can be perform utilizing the web interface.The location of the template in our docker image is:
```/home/apache/tactic_data/templates```
Some default TACTIC templates are also available.
Visit http://localhost:10080
This is the default port forwarding for the VM in case port is changed, modify accordingly.Here is a screenshot.
First step is set an account.
![First time setup](images/Screen Shot 2015-10-22 at 1.10.18 AM.png)
If the project files are copied to the system go ahead and create the project
![Step1](images/Screen Shot 2015-10-22 at 1.12.32 AM.png)
![Step2](images/Screen Shot 2015-10-22 at 1.20.38 AM.png)
![Step3](images/Screen Shot 2015-10-22 at 1.21.08 AM.png)
If all the steps done correctly the output should be:
![Step3](images/Screen Shot 2015-10-22 at 1.21.47 AM.png)
docker stop
docker rmi $(docker images -q)