Shayen / docker-tactic

Dockerfile for a tactic docker image

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-tactic

Tactic docker image.

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

Docker Image

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 The built image is available on the Docker index as diegocortassa/tactic Dockerfile and source files can be found on github

Install docker on your host On a recent ubuntu just use "sudo apt-get update; sudo apt-get install docker.io", (I usually add an alias "alias docker='sudo docker.io'" to my .bashrc)

Download image with:

$ docker docker pull diegocortassa/tactic

Run the container with:

$ docker run -d -p 80:80 -p 2222:22 -e ROOT_PASSWORD="my_secure_root_password" diegocortassa/tactic
(remember to set ROOT_PASSWORD)
  • connect with your browser to http://localhost to use tactic.
  • use "ssh root@localhost -p 2222" for shell access.

About

Dockerfile for a tactic docker image

License:Eclipse Public License 1.0


Languages

Language:Dockerfile 84.0%Language:Shell 16.0%