forked from deluan/zsh-in-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
38 lines (32 loc) · 857 Bytes
/
docker-compose.yml
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
version: "3"
services:
zsh-in-docker-dev:
container_name: zsh-in-docker-dev
image: alpine:latest
working_dir: /workspace
volumes:
- ./:/workspace
test-alpine:
image: alpine:latest
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"
test-ubuntu:
image: ubuntu:latest
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"
test-ubuntu-14.04:
image: ubuntu:14.04
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"
test-debian:
image: debian:latest
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"
test-amazonlinux:
image: amazonlinux:latest
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"
test-centos:
image: centos:latest
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"