Files
kwaylon/docker-compose.yml
2023-06-11 10:19:42 -05:00

18 lines
397 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
command: [ "kwaylon" ]