You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
... the documentation does not mention anything about my problem
... there are no open or closed issues that are related to my problem
Description
I installed addy via docker using the template provided and tweaking it.
It installs successfully but when I try to reach the app via [IP]:8000 I get a 500 error and no description in the logs of the docker image for the error:
"[19/Apr/2024:16:33:21 -0400] "GET / HTTP/1.1" 500 1029 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:124.0) Gecko/20100101 Firefox/124.0""
Here is my compose file:
version: "3.5"services:
db:
image: mariadb:10.5container_name: anonaddy_dbcommand:
- "mysqld"
- "--character-set-server=utf8mb4"
- "--collation-server=utf8mb4_unicode_ci"volumes:
- "addy_db:/var/lib/mysql"environment:
- "MYSQL_ALLOW_EMPTY_PASSWORD=yes"
- "MYSQL_DATABASE=[redacted, but same as DB_DATABASE value]"
- "MYSQL_USER=[redacted, but same as DB_USERNAME value]"
- "MYSQL_PASSWORD=[redacted, but same as DB_PASSWORD value]"
- TZ=America/New_Yorkrestart: alwaysredis:
image: redis:4.0-alpinecontainer_name: anonaddy_redisrestart: alwaysanonaddy:
image: anonaddy/anonaddy:latestcontainer_name: anonaddydepends_on:
- db
- redisports:
- target: 25published: 25protocol: tcp
- target: 8000published: 8000protocol: tcpvolumes:
- "addy_data:/data"environment:
- "DB_HOST=db"
- "DB_DATABASE=[redacted, but same as MYSQL_DATABASE value]"
- "DB_USERNAME=[redacted, but same as MYSQL_USER value]"
- "DB_PASSWORD=[redacted, but same as MYSQL_PASSWORD value]"
- "REDIS_HOST=redis"
- APP_KEY=[redacted]
- ANONADDY_SECRET=[redacted]
- TZ=America/New_York
- ANONADDY_ADMIN_USERNAME=admin
- ANONADDY_ENABLE_REGISTRATION=true
- ANONADDY_DOMAIN=xerxes.me
- ANONADDY_HOSTNAME=mail.xerxes.me
- "APP_URL=192.168.4.87:8000"restart: alwaysvolumes:
addy_db:
addy_data:
Expected behaviour
Going to http://[IP]:8000 should let me reach addy so that I can sign in/up
Support guidelines
I've found a bug and checked that ...
Description
I installed addy via docker using the template provided and tweaking it.
It installs successfully but when I try to reach the app via [IP]:8000 I get a 500 error and no description in the logs of the docker image for the error:
"[19/Apr/2024:16:33:21 -0400] "GET / HTTP/1.1" 500 1029 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:124.0) Gecko/20100101 Firefox/124.0""
Here is my compose file:
Expected behaviour
Going to http://[IP]:8000 should let me reach addy so that I can sign in/up
Actual behaviour
Steps to reproduce
Docker info
Docker Compose config
No response
Logs
Additional info
No response
The text was updated successfully, but these errors were encountered: