-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
33 lines (33 loc) · 977 Bytes
/
Copy pathcompose.yml
File metadata and controls
33 lines (33 loc) · 977 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
30
31
32
33
services:
test-fedora:
image: quay.io/fedora/fedora:42@sha256:e78cd1a688cd079c23864f289a89a49a3f4ad66d817864e325e1d058310ee95c
volumes:
- ${PWD}:/scripts:Z
working_dir: /scripts
environment:
- SCRIPT_TESTING=1
entrypoint: sh
test-debian-bookworm:
image: docker.io/library/debian:12.14-slim@sha256:60eac759739651111db372c07be67863818726f754804b8707c90979bda511df
volumes:
- ${PWD}:/scripts:Z
working_dir: /scripts
environment:
- SCRIPT_TESTING=1
entrypoint: sh
test-archlinux:
image: docker.io/library/archlinux:base
volumes:
- ${PWD}:/scripts:Z
working_dir: /scripts
environment:
- SCRIPT_TESTING=1
entrypoint: sh
test-ubuntu-24.04:
image: docker.io/library/ubuntu:24.04@sha256:4fbb8e6a8395de5a7550b33509421a2bafbc0aab6c06ba2cef9ebffbc7092d90
volumes:
- ${PWD}:/scripts:Z
working_dir: /scripts
environment:
- SCRIPT_TESTING=1
entrypoint: sh