15 lines
357 B
YAML
15 lines
357 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
|
|
- ./src:/usr/app/src
|
|
- ./data:/usr/app/data
|