Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/konkor/obmin-docker
OBMIN Docker Container
https://github.com/konkor/obmin-docker
Last synced: 3 months ago
JSON representation
OBMIN Docker Container
- Host: GitHub
- URL: https://github.com/konkor/obmin-docker
- Owner: konkor
- Created: 2018-07-02T10:16:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-08T14:21:59.000Z (about 4 years ago)
- Last Synced: 2024-06-21T17:09:03.160Z (5 months ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - konkor/obmin-docker - OBMIN Docker Container (others)
README
# [OBMIN Server](https://obmin.github.io) [](https://github.com/konkor/obmin)
![Build Status](https://travis-ci.com/konkor/obmin-docker.svg?branch=master)
A secure private personal server for your data.
## Usage
_You should use **obmin** id for the git version and **obmin/obmin** for dockerhub versions._## Building the docker image
```sh
docker build -t obmin .
```### Running the obmin container
```sh
docker run --rm --volume="$PWD:/srv/obmin" -p 80:8088 -it obmin
```### Use **-d** option to run a container in background
```console
$ docker run -d --rm --volume="$PWD:/srv/obmin" -p 80:8088 -it obmin
```
### Running the server with custom arguments
```sh
docker run --rm --volume="$PWD:/srv/obmin" -p 80:8088 -it obmin obmin-server --config /etc/obmin.config
```## Using Dockerhub images
### Pulling the obmin container from dockerhub
```sh
docker pull obmin/obmin
```### Running the dockerhub obmin container
```sh
docker run --rm --volume="$PWD:/srv/obmin" -p 80:8088 -it obmin/obmin
```## Customizing
1. Modify `obmin.config`.
2. Build image.