diff --git a/gotify/docker-compose.yml b/gotify/docker-compose.yml new file mode 100644 index 0000000..efbfa58 --- /dev/null +++ b/gotify/docker-compose.yml @@ -0,0 +1,14 @@ +services: + gotify: + image: gotify/server:latest + container_name: gotify + volumes: + - /mnt/data/docker/gotify:/app/data + restart: unless-stopped + ports: + - 8111:80 + security_opt: + - no-new-privileges:true + environment: + - TZ=Europe/London +