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
- Host: GitHub
- URL: https://github.com/pyprogrammerblog/moving-to-docker-compose
- Owner: pyprogrammerblog
- Created: 2022-06-22T12:09:56.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-20T11:32:50.000Z (over 3 years ago)
- Last Synced: 2023-02-26T23:26:22.248Z (about 3 years ago)
- Language: Dockerfile
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```