-
Notifications
You must be signed in to change notification settings - Fork 117
/
docker-compose.yml
43 lines (42 loc) · 948 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
version: "3"
services:
emacs25:
build:
context: .
dockerfile: ./test/Dockerfile.emacs25
environment:
- EMACS_VERSION
command: ./test/test_all
volumes:
- .:/slack
- ./test/dot_emacs_25:/root/.emacs.d
emacs26:
build:
context: .
dockerfile: ./test/Dockerfile.emacs26
environment:
- EMACS_VERSION
command: ./test/test_all
volumes:
- .:/slack
- ./test/dot_emacs_26:/root/.emacs.d
master:
build:
context: .
dockerfile: ./test/Dockerfile.master
environment:
- EMACS_VERSION
command: ./test/test_all
volumes:
- .:/slack
- ./test/dot_emacs_master:/root/.emacs.d
master_package:
build:
context: .
dockerfile: ./test/Dockerfile.master
environment:
USE_PACKAGE_EL: 1
command: ./test/test_all
volumes:
- .:/slack
- ./test/dot_emacs_master_package:/root/.emacs.d