rusty/docker-compose.yml

19 lines
377 B
YAML
Raw Normal View History

2025-06-04 00:34:01 +02:00
services:
2025-06-04 03:00:20 +02:00
rusty:
2025-06-06 04:16:19 +02:00
image: rusty
entrypoint: /bin/zsh
environment:
- HOME=/root
- SHELL=/bin/zsh
2025-06-04 00:34:01 +02:00
build:
context: .
dockerfile: Dockerfile
2025-06-04 03:00:20 +02:00
container_name: rusty
2025-06-06 04:16:19 +02:00
stdin_open: true
tty: true
volumes:
- ./home:/home:rw
- ./root:/root:rw
network_mode: host
hostname: rusty
2025-06-04 02:06:41 +02:00