-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
executable file
·47 lines (46 loc) · 1.01 KB
/
docker-compose.yaml
File metadata and controls
executable file
·47 lines (46 loc) · 1.01 KB
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
version: "3"
services:
rc-ubuntu:
image: ubuntu:xenial
container_name: rc-ubuntu
hostname: rc-ubuntu
environment:
- ENV=dev
volumes:
- .:/root/.auto_setup_env:rw
working_dir: /root/.auto_setup_env
command: tail -f /dev/null
rc-debian:
image: debian:buster
container_name: rc-debian
hostname: rc-debian
environment:
- ENV=dev
volumes:
- .:/root/.auto_setup_env:rw
working_dir: /root/.auto_setup_env
command: tail -f /dev/null
rc-centos:
image: centos:7
container_name: rc-centos
hostname: rc-centos
environment:
- ENV=dev
volumes:
- .:/root/.auto_setup_env:rw
working_dir: /root/.auto_setup_env
command: tail -f /dev/null
rc-alpine:
image: alpine:3.10
container_name: rc-alpine
hostname: rc-alpine
environment:
- ENV=dev
volumes:
- .:/root/.auto_setup_env:rw
working_dir: /root/.auto_setup_env
command: tail -f /dev/null
networks:
default:
external:
name: rc