Hello all,
I would like to test una in a development environment however it seems there are no guidelines or installation guide on how to use docker.
I noticed that the project had a docker-compose file that can be used but if running:
`docker-compose up` after build and creation and I go to the install page it says that autoload not found essentially that composer packages were not installed.
Is there a step by step guide on how to use docker to be able to run unacms locally?
Comments
Hello @crimson_med !
Briefly, we have the info about it here https://hub.docker.com/r/unaio/una and this answer from @Alex T⚜️ https://unacms.com/cmts-view/qdagu6?sys=bx_forum&cmt_id=44279
C
Tried running the docker build command and it does not create a working install on my end.
Docker file in the project when ran doesn't seem to install composer ad it says it can't load autoload.php
This is why I was looking if there was a guide that led to successful installation in place.
C
You have to run composer first, by running the following commands in your root:
$ docker pull composer/composer
$ docker run --rm -it -v "$(pwd):/app" composer/composer install