17 lines
370 B
YAML
17 lines
370 B
YAML
version: '3.3'
|
|
services:
|
|
kwaylon:
|
|
container_name: kwaylon
|
|
image: kwaylon:latest
|
|
build:
|
|
context: ./
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
tty: true
|
|
stdin_open: true
|
|
volumes:
|
|
# give access to the system time as read-only
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- ./:/kwaylon
|