https://github.com/islamic-network/phpmemadmin
https://github.com/islamic-network/phpmemadmin
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/islamic-network/phpmemadmin
- Owner: islamic-network
- Created: 2019-12-12T10:04:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-10T07:24:54.000Z (over 6 years ago)
- Last Synced: 2025-01-29T12:27:01.236Z (over 1 year ago)
- Language: Shell
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# phpMemAdmin in a Docker Container
This is a Docker container to run phpMemAdmin (https://github.com/clickalicious/phpmemadmin)
aginst a memcached container / server.
You'll need to know your memcached hostname / ip and the port (default port is 11211 for memcached).
## Run it:
```
docker run -it -p 8080:8080 -e MEMADMIN_USERNAME='memUser' -e MEMADMIN_PASSWORD='memPassword' -e MEMCACHED_HOST='memcached.hostname.or.ip' -e MEMCACHED_PORT='memcached.port' vesica/memadmin:latest
```
Head over to http://localhost:8080, enter the username and password you passed above, and see what you're caching.
## Build it (and then run it):
```
docker build . -t islamicnetwork/memadmin
```
## Publish Image
This image is already built by Docker Hub when the master branch of this repository is updated.
It is published at vesica/memadmin (https://hub.docker.com/r/islamicnetwork/phpmemadmin/).