Docker cleanups

- Put docker-compose.yml into version control, no need to make this an example
  file and complicate things.
- Start the docker dev-env osem on port 3000. Just as our documentation says
  and how we do it in vagrant.
- hardcode CONTAINER_USERID so you don't have to have an
  docker-compose.override.yml if your UID is 1000.
- Rename web service/container to osem for clarity in the logs
- Keep assets also in a volume in production
- warn a bit more prominently about docker-compose.override.yml
This commit is contained in:
Henne Vogelsang 2018-09-12 22:38:07 +02:00 committed by Ana María Martínez Gómez
parent f69bb18e79
commit 042d49619c
5 changed files with 24 additions and 15 deletions

View file

@ -27,6 +27,17 @@ based development environment, based on [docker](https://www.docker.com/) and
[docker-compose](https://docs.docker.com/compose/). Here's a step by step guide
how to set it up.
**WARNING**: Since we mount the repository into our container, your user id and
the id of the osem user inside the container need to be the same. If your user
id (`id -u`) is something else than `1000` you can copy the docker-compose
override example file and in it, set your user id in the variable
*CONTAINER_USERID*.
```bash
sed "s/13042/`id -u`/" docker-compose.override.yml.example > docker-compose.override.yml
```
1. Set up the development environment:
```bash
docker-compose run --rm osem bundle exec rake setup:bootstrap
@ -54,13 +65,6 @@ how to set it up.
docker-compose exec osem_1 /bin/bash -l
```
**WARNING**: Since we mount the repository into our container, your user id and the id of the osem user inside the container need to be the same. If your user id (`id -u`) is something else than `1000` you can copy the docker-compose override example file and in it, set your user id in the variable
*CONTAINER_USERID*.
```bash
cp docker-compose.override.yml.example docker-compose.override.yml
```
### with Vagrant
Another option is using [Vagrant](https://www.vagrantup.com/) and [VirtualBox 5.0.10](https://www.virtualbox.org/wiki/Download_Old_Builds_5_0) to create your development environment.