-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yaml
45 lines (43 loc) · 1.04 KB
/
compose.yaml
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
services:
basil-build:
image: basil:build
build:
dockerfile: docker/asli.Dockerfile
target: basil
volumes:
- ./:/host:rw
working_dir: /host
basil-nix-dev:
image: ghcr.io/uq-pac/basil-nix-dev:latest
build:
dockerfile: docker/nixdocker.Dockerfile
target: nix-dev-base
volumes:
- ./:/host:rw
working_dir: /host
basil-dev:
image: ghcr.io/uq-pac/basil-dev:latest
build:
dockerfile: docker/asli.Dockerfile
target: basil:dev
volumes:
- ./:/host:rw
working_dir: /host
basil:
image: ghcr.io/uq-pac/basil:latest
build:
dockerfile: docker/asli.Dockerfile
target: minified-all
volumes:
- ./:/host:rw
working_dir: /host
compiler-explorer:
image: ghcr.io/uq-pac/basil-compiler-explorer:latest
build:
dockerfile: docker/godbolt.Dockerfile
network_mode: host
volumes:
- ./target/scala-3.1.0/:/target/scala-3.1.0/
# - ./docker/compiler-explorer:/compiler-explorer
ports:
- "10240:10240"