diff --git a/docker-compose-files/gotify/compose.yml b/docker-compose-files/gotify/compose.yml new file mode 100644 index 0000000..0ed60dd --- /dev/null +++ b/docker-compose-files/gotify/compose.yml @@ -0,0 +1,12 @@ +services: + gotify: + image: gotify/server + ports: + - 80:80 + environment: + GOTIFY_DEFAULTUSER_PASS: 'admin' + volumes: + - './gotify_data:/app/data' + # to run gotify as a dedicated user: + # sudo chown -R 1234:1234 ./gotify_data + # user: "1234:1234"