19 lines
377 B
YAML
19 lines
377 B
YAML
services:
|
|
rusty:
|
|
image: rusty
|
|
entrypoint: /bin/zsh
|
|
environment:
|
|
- HOME=/root
|
|
- SHELL=/bin/zsh
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: rusty
|
|
stdin_open: true
|
|
tty: true
|
|
volumes:
|
|
- ./home:/home:rw
|
|
- ./root:/root:rw
|
|
network_mode: host
|
|
hostname: rusty
|
|
|