gotify / android

An app for creating push notifications for new messages posted to gotify/server.
MIT License
934 stars 156 forks source link

first login - docker #381

Open phoniclynx opened 1 day ago

phoniclynx commented 1 day ago

Just tried to create a container through docker and used the compose file found in the documentation in portainer.

The docker container builds fine, however when I go to the login page and I type in admin:admin for the first login I get a Login Failed error

jmattheis commented 1 day ago

If you used the example docker-compose, then the password is custom

version: "3"

services:
  gotify:
    image: gotify/server
    ports:
      - 8080:80
    environment:
      - GOTIFY_DEFAULTUSER_PASS=custom
    volumes:
      - "./gotify_data:/app/data"