16 lines
320 B
YAML
16 lines
320 B
YAML
version: '3.3'
|
|
services:
|
|
watchstate:
|
|
build: .
|
|
restart: unless-stopped
|
|
container_name: watchstate
|
|
environment:
|
|
APP_UID: 1000
|
|
APP_GID: 1000
|
|
IN_DOCKER: 1
|
|
WS_DATA_PATH: /config
|
|
volumes:
|
|
- ../../:/app
|
|
- ../../var:/config:rw
|
|
- ./entrypoint.sh:/entrypoint-docker
|