forked from deluan/zsh-in-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
47 lines (39 loc) · 1.05 KB
/
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
39
40
41
42
43
44
45
46
47
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-rockylinux8:
image: rockylinux:8
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"
test-rockylinux9:
image: rockylinux:9
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"
test-fedora:
image: fedora:latest
entrypoint: /bin/sh
command: -c "while sleep 1000; do :; done"