https://github.com/librecodecoop/kimai-docker
Run Kimai on a container
https://github.com/librecodecoop/kimai-docker
docker docker-compose hacktoberfest kimai kimai2
Last synced: 17 days ago
JSON representation
Run Kimai on a container
- Host: GitHub
- URL: https://github.com/librecodecoop/kimai-docker
- Owner: LibreCodeCoop
- License: agpl-3.0
- Created: 2021-08-24T22:26:37.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T18:03:51.000Z (over 2 years ago)
- Last Synced: 2025-01-28T02:27:47.368Z (over 1 year ago)
- Topics: docker, docker-compose, hacktoberfest, kimai, kimai2
- Language: Shell
- Homepage:
- Size: 44.9 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kimai Docker
[Kimai](https://github.com/kimai/kimai) runing in a container
Purpose of this project: expose the source code of Kimai in a volume
## Setup
* Clone this repository
* run `docker-compose up`
## Development
Look [here](docs/development.md)
## Update
* Go to the kimai folder
* Check the base image version
```bash
cat .docker/php/Dockerfile | grep FROM
cat .env | grep VERSION
```
* Update the container
```bash
# replace with the newest base image
docker compose build --pull
```
* Go to the kimai volume folder
```bash
git pull origin main
cd volumes/php
git fetch origin
git checkout FETCH_HEAD
git checkout -b
docker compose exec kimai composer i --no-dev
docker compose exec kimai chown -R www-data:www-data .
docker compose restart kimai
```