-
-
Notifications
You must be signed in to change notification settings - Fork 468
/
Copy pathdocker-compose.yml
52 lines (47 loc) · 950 Bytes
/
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
# For local development only.
services:
zephir-8.0:
container_name: zephir-8.0
hostname: zephir-80
build: .docker/8.0
working_dir: /srv
environment:
- "USER=Zephir"
volumes:
- .:/srv
zephir-8.1:
container_name: zephir-8.1
hostname: zephir-81
build: .docker/8.1
working_dir: /srv
environment:
- "USER=Zephir"
volumes:
- .:/srv
zephir-8.2:
container_name: zephir-8.2
hostname: zephir-82
build: .docker/8.2
working_dir: /srv
environment:
- "USER=Zephir"
volumes:
- .:/srv
zephir-8.3:
container_name: zephir-8.3
hostname: zephir-83
build: .docker/8.3
working_dir: /srv
environment:
- "USER=Zephir"
volumes:
- .:/srv
zephir-8.4:
container_name: zephir-8.4
hostname: zephir-84
build: .docker/8.4
working_dir: /srv
environment:
- "USER=Zephir"
volumes:
- .:/srv