-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (35 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
36 lines (35 loc) · 1.08 KB
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
version: '3.4'
services:
hellodockermaster:
container_name: hellodockermaster-container
environment:
- TZ=Europe/Zurich
image: ${DOCKER_REGISTRY-}hellodockermaster
build:
context: .
dockerfile: HelloDockerMaster/Dockerfile
volumes:
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
volume:
nocopy: true
- type: bind
source: D:\ContainerData\logs
target: /logs
volume:
nocopy: true
servicenotresponding:
container_name: servicenotresponding-container
environment:
- TZ=Europe/Zurich
image: ${DOCKER_REGISTRY-}servicenotresponding
build:
context: .
dockerfile: ServiceNotResponding/Dockerfile
volumes:
- type: bind
source: D:\ContainerData\logs
target: /logs
volume:
nocopy: true