-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (56 loc) · 1.36 KB
/
docker-compose.yml
File metadata and controls
60 lines (56 loc) · 1.36 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
48
49
50
51
52
53
54
55
56
57
58
59
60
services:
archlinux:
build:
context: .
dockerfile: Dockerfile
container_name: dotfiles-archlinux
volumes:
- .:/home/heron/Workbench/dotfiles
working_dir: /home/heron/Workbench/dotfiles
command: /bin/zsh
stdin_open: true
tty: true
ubuntu:
build:
context: .
dockerfile: Dockerfile.ubuntu
container_name: dotfiles-ubuntu
volumes:
- .:/home/heron/Workbench/dotfiles
working_dir: /home/heron/Workbench/dotfiles
command: /bin/bash
stdin_open: true
tty: true
fedora:
build:
context: .
dockerfile: Dockerfile.fedora
container_name: dotfiles-fedora
volumes:
- .:/home/heron/Workbench/dotfiles
working_dir: /home/heron/Workbench/dotfiles
command: /bin/bash
stdin_open: true
tty: true
opensuse:
build:
context: .
dockerfile: Dockerfile.opensuse
container_name: dotfiles-opensuse
volumes:
- .:/home/heron/Workbench/dotfiles
working_dir: /home/heron/Workbench/dotfiles
command: /bin/bash
stdin_open: true
tty: true
# Test bootstrap script (remote installation simulation)
bootstrap:
build:
context: .
dockerfile: Dockerfile.bootstrap
container_name: dotfiles-bootstrap
working_dir: /home/egret
command: /bin/bash
user: "egret:wheel"
stdin_open: false
tty: false