Just found out this project and I wanted to try it out.
However I can't get Admidio configured.
I tried installing it in Docker and also barebones on Debian 12.
On Docker I configured it with environment variables. I have an external mariadb database.
Code: Alles auswählen
admidio:
image: admidio/admidio:latest
container_name: admidio
stdin_open: true
tty: true
networks:
- proxy-local
ports:
- 9288:8080
volumes:
- $DOCKER_DIR/appdata/productivity/admidio/files:/opt/app-root/src/adm_my_files
- $DOCKER_DIR/appdata/productivity/admidio/themes:/opt/app-root/src/adm_themes
- $DOCKER_DIR/appdata/productivity/admidio/plugins:/opt/app-root/src/adm_plugins
environment:
- TZ=$TZ
- ADMIDIO_DB_TYPE=mysql
- ADMIDIO_DB_HOST=$MYSQL_HOST:3306 #my external mariadb database
- ADMIDIO_DB_NAME=admidio
- ADMIDIO_DB_USER=$MYSQL_USER
- ADMIDIO_DB_PASSWORD=$MYSQL_PASSWORD
- ADMIDIO_DB_TABLE_PRAEFIX=test
# - ADMIDIO_ORGANISATION=test
- ADMIDIO_ROOT_PATH=http://10.20.15.201:9288 #http://localhost:9288/test
# - ADMIDIO_MAIL_RELAYHOST=192.168.10.10:25
# - ADMIDIO_LOGIN_FOR_UPDATE=1
- ADMIDIO_PASSWORD_HASH_ALGORITHM=SHA512 #DEFAULT, BCRYPT, SHA512, ARGON2ID, ARGON2I
security_opt:
- "seccomp:unconfined"
restart: unless-stopped
The only issue I can see in the docker logs is:
I then installed it from the zip-file in a Debian 12 LXC container (proxmox), but after following the installation guide (php8.3 + php pdo drivers installed) I even can't get to the Installation Wizard and get the same error page as in docker when visiting http://10.20.15.29/admidio/index.php.admidio | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.23. Set the 'ServerName' directive globally to suppress this message
Am I missing something here?