You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
550 B
19 lines
550 B
version: "3"
|
|
|
|
services:
|
|
pialert:
|
|
container_name: pialert
|
|
image: "jokobsk/pi.alert:latest"
|
|
network_mode: "host"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./config:/home/pi/pialert/config
|
|
- ./db:/home/pi/pialert/db
|
|
# (optional) useful for debugging if you have issues setting up the container
|
|
- ./logs:/home/pi/pialert/front/log
|
|
- ./test:/home/pi/pialert/front/api/
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- HOST_USER_ID=1000
|
|
- HOST_USER_GID=1000
|
|
- PORT=20211 |