-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
78 lines (78 loc) · 1.57 KB
/
docker-compose.yml
File metadata and controls
78 lines (78 loc) · 1.57 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: '3'
services:
yumrepo:
build:
context: .
dockerfile: dockerfiles/Dockerfile.yumrepo
volumes:
- ./repo:/opt/pkg/repo
debrepo-focal:
build:
context: .
dockerfile: dockerfiles/Dockerfile.debrepo
args:
DIST: focal
volumes:
- ./repo:/opt/pkg/repo
environment:
- DIST=focal
debrepo-jammy:
build:
context: .
dockerfile: dockerfiles/Dockerfile.debrepo
args:
DIST: jammy
volumes:
- ./repo:/opt/pkg/repo
environment:
- DIST=jammy
debrepo-noble:
build:
context: .
dockerfile: dockerfiles/Dockerfile.debrepo
args:
DIST: noble
volumes:
- ./repo:/opt/pkg/repo
environment:
- DIST=noble
debrepo-buster:
build:
context: .
dockerfile: dockerfiles/Dockerfile.debrepo
args:
DIST: buster
volumes:
- ./repo:/opt/pkg/repo
environment:
- DIST=buster
debrepo-bullseye:
build:
context: .
dockerfile: dockerfiles/Dockerfile.debrepo
args:
DIST: bullseye
volumes:
- ./repo:/opt/pkg/repo
environment:
- DIST=bullseye
debrepo-bookworm:
build:
context: .
dockerfile: dockerfiles/Dockerfile.debrepo
args:
DIST: bookworm
volumes:
- ./repo:/opt/pkg/repo
environment:
- DIST=bookworm
debrepo-debian:
build:
context: .
dockerfile: dockerfiles/Dockerfile.debrepo
args:
DIST: debian
volumes:
- ./repo:/opt/pkg/repo
environment:
- DIST=debian