Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicholaswilde/docker-ubuntu-server
A Ubuntu Server image used for testing.
https://github.com/nicholaswilde/docker-ubuntu-server
docker server ubuntu ubuntu-server
Last synced: about 1 month ago
JSON representation
A Ubuntu Server image used for testing.
- Host: GitHub
- URL: https://github.com/nicholaswilde/docker-ubuntu-server
- Owner: nicholaswilde
- License: apache-2.0
- Created: 2021-03-06T03:10:50.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-21T14:57:36.000Z (over 1 year ago)
- Last Synced: 2024-05-01T19:23:33.067Z (7 months ago)
- Topics: docker, server, ubuntu, ubuntu-server
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/nicholaswilde/ubuntu-server
- Size: 67.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Docker Ubuntu Server
[![Docker Image Version (latest by date)](https://img.shields.io/docker/v/nicholaswilde/ubuntu-server)](https://hub.docker.com/r/nicholaswilde/ubuntu-server)
[![Docker Pulls](https://img.shields.io/docker/pulls/nicholaswilde/ubuntu-server)](https://hub.docker.com/r/nicholaswilde/ubuntu-server)
[![GitHub](https://img.shields.io/github/license/nicholaswilde/docker-ubuntu-server)](./LICENSE)
[![ci](https://github.com/nicholaswilde/docker-ubuntu-server/workflows/ci/badge.svg)](https://github.com/nicholaswilde/docker-ubuntu-server/actions?query=workflow%3Aci)
[![lint](https://github.com/nicholaswilde/docker-ubuntu-server/workflows/lint/badge.svg?branch=main)](https://github.com/nicholaswilde/docker-ubuntu-server/actions?query=workflow%3Alint)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)A multi-architecture image for [ubuntu-server](https://ubuntu.com/download/server).
## Architectures
* [x] `armv7`
* [x] `arm64`
* [x] `amd64`## Dependencies
* None
## Usage
### docker cli```bash
$ docker run -d \
--name=ubuntu-server-default \
-e TZ=America/Los_Angeles `# optional` \
-p 3000:3000 \
--restart unless-stopped \
nicholaswilde/ubuntu-server
```### docker-compose
See [docker-compose.yaml](./docker-compose.yaml).
## Configuration
| user | password |
|-------:|:--------:|
| ubuntu | ubuntu |## Development
See [Wiki](https://github.com/nicholaswilde/docker-template/wiki/Development).
## Troubleshooting
See [Wiki](https://github.com/nicholaswilde/docker-template/wiki/Troubleshooting).
## Pre-commit hook
If you want to automatically generate `README.md` files with a pre-commit hook, make sure you
[install the pre-commit binary](https://pre-commit.com/#install), and add a [.pre-commit-config.yaml file](./.pre-commit-config.yaml)
to your project. Then run:```bash
$ pre-commit install
$ pre-commit install-hooks
```
Currently, this only works on `amd64` systems.## License
[Apache 2.0 License](./LICENSE)
## Author
This project was started in 2021 by [Nicholas Wilde](https://github.com/nicholaswilde/).