Skip to main content

Gotify

services:
  gotify:
    image: gotify/server
    ports:
      - 8066:80
    environment:
      GOTIFY_DEFAULTUSER_PASS: 'admin'
    volumes:
      - app:/app/data
    # to run gotify as a dedicated user:
    # sudo chown -R 1234:1234 ./gotify_data
    # user: "1234:1234"

volumes:
  app: