14 lines
347 B
YAML
14 lines
347 B
YAML
version: '3.8'
|
|
services:
|
|
kwaylon:
|
|
container_name: kwaylon
|
|
image: kwaylon:latest
|
|
build: ./
|
|
# restart: unless-stopped
|
|
network_mode: host
|
|
volumes:
|
|
# give access to the system time as read-only
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /mnt/dietpi_userdata/kwaylon:/usr/app
|