This repository was archived by the owner on Dec 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
57 lines (57 loc) · 1.42 KB
/
docker-compose.yml
File metadata and controls
57 lines (57 loc) · 1.42 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
version: "3"
services:
linux:
build:
dockerfile: Dockerfile_linux
context: "."
args:
BASE: i386/ubuntu:artful
image: smibu/eol2:linux
linux64:
build:
dockerfile: Dockerfile_linux
context: "."
args:
BASE: ubuntu:artful
image: smibu/eol2:linux64
win32:
build:
dockerfile: Dockerfile_mingw32
context: "."
args:
TARGET: i686-w64-mingw32.static
BITS: 32
image: smibu/eol2:win32
win64:
build:
dockerfile: Dockerfile_mingw32
context: "."
args:
TARGET: x86_64-w64-mingw32.static
BITS: 64
image: smibu/eol2:win64
osx:
build:
dockerfile: Dockerfile_osxcross_x86_64
context: "."
image: smibu/eol2:osx
emscripten:
build:
dockerfile: Dockerfile_emscripten
context: "."
image: smibu/eol2:emscripten
mxe:
build:
dockerfile: Dockerfile_mxe
context: "."
image: smibu/eol2:mxe
dockerlint:
image: lukasmartinelli/hadolint
working_dir: /
volumes:
- ./Dockerfile_linux:/Dockerfile_linux
- ./Dockerfile_mingw32:/Dockerfile_mingw32
- ./Dockerfile_emscripten:/Dockerfile_emscripten
- ./Dockerfile_osxcross_x86_64:/Dockerfile_osxcross_x86_64
- ./Dockerfile_mxe:/Dockerfile_mxe
command: bash -c "for f in Dockerfile*; do hadolint --ignore SC2086 --ignore DL4000 --ignore DL3008 --ignore DL3006 $$f; done"