-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
94 lines (80 loc) · 2.14 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
version: "3.9"
x-service-base: &service-base
image: cloudreactor-python-ecs-quickstart
build:
context: ./
args:
ENV_FILE_PATH: deploy_config/env/.env.dev
volumes:
- ./src:/home/appuser/src
- ./deploy_config/env/.env.dev:/home/appuser/.env
environment: &service-env-base
PROC_WRAPPER_OFFLINE_MODE: "TRUE"
PROC_WRAPPER_LOG_LEVEL: DEBUG
# Comment out for docker-compose that supports versions less than 3.9
profiles: ["dev"]
x-dev-base: &dev-base
<<: *service-base
image: cloudreactor-python-ecs-quickstart-dev
build:
context: ./
dockerfile: Dockerfile-dev
volumes:
- ./src:/home/appuser/src
- ./tests:/home/appuser/tests
- ./deploy_config/env/.env.dev:/home/appuser/.env
- ./mypy.ini:/home/appuser/mypy.ini
- ./requirements.txt:/home/appuser/requirements.txt
entrypoint: python
services:
task_1:
<<: *service-base
entrypoint: python src/task_1.py
environment:
<<: *service-env-base
file_io:
<<: *service-base
entrypoint: python src/file_io.py
environment:
<<: *service-env-base
web_server:
<<: *service-base
entrypoint: flask run -p 7070 --host=0.0.0.0
environment:
<<: *service-env-base
PROC_WRAPPER_TASK_IS_SERVICE: "TRUE"
FLASK_APP: "src/web_server.py"
ports:
- "7070:7070"
profiles: []
# Not a deployed task, here for debugging your Docker build.
shell:
<<: *service-base
entrypoint: bash
pytest:
<<: *dev-base
entrypoint: pytest
pytest-cov:
<<: *dev-base
entrypoint: pytest --cov=src
pylint:
<<: *dev-base
entrypoint: pylint --rcfile=src/.pylintrc src
mypy:
<<: *dev-base
entrypoint: mypy src
pip-audit:
<<: *dev-base
entrypoint: pip-audit -r requirements.txt
dev-shell:
<<: *dev-base
entrypoint: bash
# Check your Dockerfile against best-practices:
# See https://github.com/hadolint/hadolint
hadolint:
image: hadolint/hadolint
volumes:
- ./Dockerfile:/mnt/Dockerfile
- ./hadolint.yaml:/mnt/hadolint.yaml
entrypoint: /bin/hadolint --config /mnt/hadolint.yaml /mnt/Dockerfile
profiles: ["dev"]