-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
32 lines (30 loc) · 793 Bytes
/
docker-compose.yml
File metadata and controls
32 lines (30 loc) · 793 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
services:
rndpwd_integration:
container_name: rndpwd_integration
build:
context: .
dockerfile: test.integration.Dockerfile
environment:
DEPLOY_ENV: "int"
depends_on:
- rndpwd
- rndpwd_smocker_ipify
volumes:
- ./target/binutil/dockerize:/usr/bin/dockerize
- ./target/report/:/workspace/target/report/
rndpwd:
image: tecnickcom/rndpwd
container_name: rndpwd
restart: always
env_file:
- target/rndpwd.integration.env
entrypoint: [
"/usr/bin/dockerize",
"-wait", "tcp://rndpwd_smocker_ipify:8081",
"/usr/bin/rndpwd"
]
volumes:
- ./target/binutil/dockerize:/usr/bin/dockerize
rndpwd_smocker_ipify:
container_name: rndpwd_smocker_ipify
image: thiht/smocker