Build the image:
docker-compose buildRun the web server:
docker-compose upOpen your browser with URL http://localhost:8002.
For the admin panel http://localhost:8002/admin
(user: admin, password: admin).
Run the tests only once:
docker-compose run --rm --entrypoint 'bash scripts/run-tests.sh' crm_serviceRun the tests and leave bash open inside the container, so it's possible to
re-run the tests faster again using bash scripts/run-tests.sh [--keepdb]:
docker-compose run --rm --entrypoint 'bash scripts/run-tests.sh --bash-on-finish' crm_serviceTo run bash:
docker-compose run --rm --entrypoint 'bash' crm_service