fix: Change Adminer port from 8080 to 8081 to avoid port conflicts

This commit is contained in:
Alexis Bruneteau 2025-11-07 02:20:29 +01:00
parent f2395b86f6
commit 61868dd9fa

View File

@ -108,14 +108,14 @@ services:
# ================================================================ # ================================================================
# Optional: Adminer (Database Management UI) # Optional: Adminer (Database Management UI)
# Access at http://localhost:8080 # Access at http://localhost:8081
# ================================================================ # ================================================================
adminer: adminer:
image: adminer:latest image: adminer:latest
container_name: evoting_adminer container_name: evoting_adminer
restart: unless-stopped restart: unless-stopped
ports: ports:
- "8080:8080" - "8081:8080"
depends_on: depends_on:
- mariadb - mariadb
networks: networks: