
* add docker-based development resources * incorporate feedback from @ax3l * fix docs/improve ssh handling * experiment with custom prompt * add arch/fix missing core_compilers key * add centos/minor tweaks * make prompt experiment optional * workaround problem with latest fedora docker image * add docker documentation page to index toc * try another documentation fix * switch arch linux base to base/archlinux * update the git urls in the Dockerfiles * add opensuse * switch CUSTOM_PROMPT variable to simply "PROMPT"
33 lines
628 B
YAML
33 lines
628 B
YAML
version: '3'
|
|
services:
|
|
arch:
|
|
build: ./spack_arch
|
|
volumes:
|
|
- '../../..:/spack'
|
|
environment:
|
|
PROMPT: "${PROMPT:-0}"
|
|
centos:
|
|
build: ./spack_centos
|
|
volumes:
|
|
- '../../..:/spack'
|
|
environment:
|
|
PROMPT: "${PROMPT:-0}"
|
|
fedora:
|
|
build: ./spack_fedora
|
|
volumes:
|
|
- '../../..:/spack'
|
|
environment:
|
|
PROMPT: "${PROMPT:-0}"
|
|
opensuse:
|
|
build: ./spack_opensuse
|
|
volumes:
|
|
- '../../..:/spack'
|
|
environment:
|
|
PROMPT: "${PROMPT:-0}"
|
|
ubuntu:
|
|
build: ./spack_ubuntu
|
|
volumes:
|
|
- '../../..:/spack'
|
|
environment:
|
|
PROMPT: "${PROMPT:-0}"
|