-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 970 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (28 loc) · 970 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
version: '3.8'
services:
ubuntu-builder:
container_name: ubuntu-builder
image: openvalverde/ubuntu-deb-images:val-verde-compilers-1.0.0
build:
context: ./
dockerfile: ubuntu.Dockerfile
args:
- OS_RELEASE_VERSION=rolling
- PACKAGE_ARCHIVE_CLASS=deb
- PACKAGE_BASE_NAME=val-verde
- PACKAGE_ROOT=/opt
- VAL_VERDE_GH_TEAM=val-verde
privileged: true
fedora-builder:
container_name: fedora-builder
image: openvalverde/fedora-rpm-images:val-verde-compilers-1.0.0
build:
context: ./
dockerfile: fedora.Dockerfile
args:
- OS_RELEASE_VERSION=latest
- PACKAGE_ARCHIVE_CLASS=rpm
- PACKAGE_BASE_NAME=val-verde
- PACKAGE_ROOT=/opt
- VAL_VERDE_GH_TEAM=val-verde
privileged: true