This repository holds docker images which can be used for Koseven.
There will be 4 branches which all server a different purpose:
Branch | Purpose |
---|---|
master | Image for a development/production environment. |
travis | Image for Unit-Testing inside Travis CI (CAREFUL: Don't use on production servers.) |
devel | Development Branch for master . Only latest koseven:devel version will be supproted. |
travis-devel | Development Branch for travis . Only latest koseven:devel version will be supproted. |
Using one of the container is quite straight forward.
The docker repository for them is called koseven/docker
.
By specifying the desired branch as docker-tag you can acquire the desired image.
Note: for pulling the master
branch use latest
as tag name.
e.g. This will pull the master branch image:
docker pull koseven/docker:latest
e.g This will pull the travis branch image:
docker pull koseven/docker:travis
After executing the docker pull
command from above you're done setting up
your docker image, now you can go ahead and use it!
Coming Soon. Stay tuned!
For this particular Image you have multiple options.
-
Some IDE's (PHPStorm for example) have full support for docker unittesting, you just need to configure it there and you are good to go!
-
Run the tests from the cli. Execute the following cli commands (from within your Koseven installation folder):
-
Start container in background and mount installation folder:
docker run -dtP --name unittest -v $(pwd):/tmp/koseven/ koseven/docker:travis
-
Start services, install composer requirements and run PHPUnit
docker exec unittest /bin/sh -c "service redis-server start; cd /tmp/koseven; composer install; php vendor/bin/phpunit"
-
(Hint) You can execute a /bin/bash
shell inside the container and modify it before Unit-Testing
docker exec -i -t unittest /bin/bash
For more examples / tutorials how to create and interact with container visit the official Docker Help
Target | Release date |
---|---|
Initial master image |
2019.11.?? |
Initial travis image |
2019.09.?? |
Initial travis-devel |
2019.08.?? |
As usual, fork and send pull requests
- Open issues in this project.