mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
46 lines
764 B
Markdown
46 lines
764 B
Markdown
# wonderfall/selfoss
|
|
|
|

|
|
|
|
The new multipurpose rss reader, live stream, mashup, aggregation web application.
|
|
|
|
### Requirement
|
|
|
|
- Docker 1.0 or higher
|
|
|
|
### How to use
|
|
|
|
```
|
|
docker run -d \
|
|
--name selfoss \
|
|
-p 80:80 \
|
|
-v /mnt/docker/selfoss:/selfoss/data \
|
|
hardware/selfoss
|
|
```
|
|
|
|
### Environment variables
|
|
|
|
- **VERSION** = selfoss version (*optional*, default: 2.15)
|
|
- **GID** = selfoss user id (*optional*, default: 991)
|
|
- **UID** = selfoss group id (*optional*, default: 991)
|
|
|
|
### Docker-compose
|
|
|
|
#### Docker-compose.yml
|
|
|
|
```
|
|
selfoss:
|
|
image: hardware/selfoss
|
|
container_name: selfoss
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- /mnt/docker/selfoss:/selfoss/data
|
|
```
|
|
|
|
#### Run !
|
|
|
|
```
|
|
docker-compose up -d
|
|
```
|