An open API service indexing awesome lists of open source software.

https://github.com/pyprogrammerblog/moving-to-docker-compose

Moving to Docker-compose from WSL
https://github.com/pyprogrammerblog/moving-to-docker-compose

Last synced: 2 months ago
JSON representation

Moving to Docker-compose from WSL

Awesome Lists containing this project

README

          

# moving-to-docker-compose

Clone the project and move inside:
```shell
git clone https://github.com/mopinion/moving-to-docker-compose.git
cd moving-to-docker-compose
```

Install the virtualenv on the root project folder:
```shell
docker-compose run --rm --no-deps app poetry install
```

Check your installed dependencies for security vulnerabilities
```shell
docker-compose run --rm app poetry check
```

Finally, run the tests:
```shell
docker-compose run --rm app poetry run pytest
```