-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
32 lines (30 loc) · 836 Bytes
/
docker-compose-dev.yml
File metadata and controls
32 lines (30 loc) · 836 Bytes
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
version: "3.7"
networks:
# This should match product-opener network
po_default:
external: true
services:
impact:
build:
context: .
dockerfile: Dockerfile
args:
IMPACT_LIB_REF: ${IMPACT_LIB_REF:-refs/heads/master}
restart: "no"
networks:
- po_default
volumes:
- ".:/app"
command:
[
"python",
"main.py",
"--productopener_base_url",
"http://frontend/",
"--productopener_host_header",
"world.productopener.localhost",
"--productopener_username",
"ecoscore-impact-estimator",
"--productopener_password",
"estimator",
]