summaryrefslogtreecommitdiff
path: root/share/spack/docker/docker-compose.yml
blob: 4f37127e3f68c7590e5c023a7ee2ece66084e6e4 (plain) (blame)
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
version: '3'
services:
  arch:
    build:
      context: build
      dockerfile: arch.dockerfile
    volumes:
      - '../../..:/spack'
    environment:
      PROMPT: "${PROMPT:-0}"
  centos:
    build:
      context: build
      dockerfile: centos.dockerfile
    volumes:
      - '../../..:/spack'
    environment:
      PROMPT: "${PROMPT:-0}"
  fedora:
    build:
      context: build
      dockerfile: fedora.dockerfile
    volumes:
      - '../../..:/spack'
    environment:
      PROMPT: "${PROMPT:-0}"
  opensuse:
    build:
      context: build
      dockerfile: opensuse.dockerfile
    volumes:
      - '../../..:/spack'
    environment:
      PROMPT: "${PROMPT:-0}"
  scilinux:
    build:
      context: build
      dockerfile: scilinux.dockerfile
    volumes:
      - '../../..:/spack'
    environment:
      PROMPT: "${PROMPT:-0}"
  scilinux:
    build: ./spack_scilinux
    volumes:
      - '../../..:/spack'
    environment:
      PROMPT: "${PROMPT:-0}"
  ubuntu:
    build:
      context: build
      dockerfile: ubuntu.dockerfile
    volumes:
      - '../../..:/spack'
    environment:
      PROMPT: "${PROMPT:-0}"