Skip to content

A web-based project management system featuring gantt charts, time logging, and an extendable module system.

License

Unknown, BSD-3-Clause-Clear licenses found

Licenses found

Unknown
LICENSE
BSD-3-Clause-Clear
COPYING
Notifications You must be signed in to change notification settings

aps2201/web2project-container

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

web2Project Containerization

This is a containerization for web2Project. It builds upon the php:8.4-apache docker image.

How to use

Podman

In Podman you can create a pod for the by using podman pod create --name w2p -p [port]:80 --security-opt apparmor=unconfined.

Then build the image using the available Containerfile in this repo. The image will contain all the requirements and permissions for web2Project to run podman build -f w2p.Containerfile -t w2p ..

To create a mysql database you can use the official docker image and add it to the pod: podman run --replace --name w2p-mysql --pod w2p -e MYSQL_ROOT_PASSWORD=[root_password] -e MYSQL_DATABASE=w2p -e MYSQL_USER=w2p -e MYSQL_PASSWORD=[db_password] -d docker.io/library/mariadb:lts

Finally run the w2p container inside the pod podman run --replace -d --pod w2p -v w2p:/var/www/html/ --name w2p w2p

In the initial system configuration page you should use 127.0.0.1:3306 as the host, localhost:3306 does not work for some reason.

Please be aware however that at the time of writing apparmor has an intermittent issue on handling permissions you may be able to start it with no problem but killing the container can have issues.

Quadlet

I have created a handy ./qdeploy script to setup the quadlet as user. All files are in the folder quadlet/. You should change the PublishPort in quadlet/w2p.pod to your taste and do not forget to change the MYSQL_PASSWORD in quadlet/w2p_mysql.container. Everything else should be fine as is. Tested in podman 5.3.2.

Docker

I have not created a compose file for this project but the image works fine with docker build -f w2p.Containerfile -t w2p .

TODO:

  • Docker compose file
  • Podman quadlet

About

A web-based project management system featuring gantt charts, time logging, and an extendable module system.

Resources

License

Unknown, BSD-3-Clause-Clear licenses found

Licenses found

Unknown
LICENSE
BSD-3-Clause-Clear
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 94.2%
  • JavaScript 3.4%
  • CSS 1.8%
  • HTML 0.6%
  • Hack 0.0%
  • Dockerfile 0.0%