https://github.com/agentejo/cockpit-docker
https://github.com/agentejo/cockpit-docker
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/agentejo/cockpit-docker
- Owner: agentejo
- License: mit
- Created: 2017-08-24T13:30:09.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-17T01:48:55.000Z (over 4 years ago)
- Last Synced: 2025-05-07T04:59:22.169Z (5 months ago)
- Language: Dockerfile
- Size: 10.7 KB
- Stars: 19
- Watchers: 5
- Forks: 17
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Usage
Start a container with:docker run -d --name cockpit -p 8080:80 agentejo/cockpit
# Build
docker build -t agentejo/cockpit:latest . --no-cache# Update Repo
docker push agentejo/cockpit# Run
docker run -p 8080:80 agentejo/cockpit:latest# Login
You can find the default user and password at URL [/install](http://localhost:8080/install)# Cleanup
docker rmi $(docker images -f "dangling=true" -q) agentejo/cockpit:latest -f