12 lines
248 B
YAML
12 lines
248 B
YAML
version: '3.8'
|
|
services:
|
|
kwaylon:
|
|
container_name: kwaylon
|
|
image: kwaylon:latest
|
|
build: ./
|
|
network_mode: host
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
restart: unless-stopped
|