Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Jun 15, 2026. It is now read-only.
Added PhpMyAdmin - #4
Open
Artillio wants to merge 1 commit into
Open
Conversation
I added phpmyadmin to manage the database more easily
luke-
commented
Jan 13, 2025
Contributor
Thanks for the contribution. I'm still a bit unsure whether we should add this. It's important that the default Docker Compose setup is as secure as possible out of the box. |
ArchBlood
commented
Jan 20, 2025
Could use Caddy here for this and remove the mapping for public ports? Although this would require more thinking on the intended implementation. ExampleLimit Access:8081 {
reverse_proxylocalhost:8081@allowed {
remote_ip192.168.1.0/24 # Replace with allowed IP ranges
}
respond@notAllowed"Access Denied" 403
}Authorization:8081 {
reverse_proxylocalhost:8081 basicauth / {
admin JDJhJDEwJG...hashed_password_here
}
}HTTPSphpmyadmin.yourdomain.com {
reverse_proxylocalhost:8081 tls email@example.com
}Disable External Portsphpmyadmin:
image: phpmyadmin/phpmyadmin:latestrestart: alwaysports:
# - "8081:80" # Remove this lineBut again, the implementation would really need more thinking of how it is wanted to be used if at all. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I added phpmyadmin to manage the database more easily