Initial commit

This commit is contained in:
Hugo Levy-Falk 2020-03-31 18:56:00 +02:00
commit d9bea9eb37
4 changed files with 207 additions and 0 deletions

24
README.md Normal file
View file

@ -0,0 +1,24 @@
# Re2o Docker for devs
This is simply a docker environment to dev re2o locally.
To use it :
* clone Re2o;
* copy `Dockerfile` and `docker-compose.yml` into the cloned directory;
* copy `settings_local.py` into the `re2o` folder in the cloned directory;
* run `docker-compose up`
The apache server and migrations are updated every time you relauch the `docker-compose` command. To enter a shell in the execution environment, you can use
```
docker ps
```
to find the id of the re2o environment, then
```
docker exec -it <ID> bash
```
KEEP IN MIND THAT THIS IS A DEV ENVIRONMENT NOT MEANT FOR PRODUCTION USE.