This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
freshrss/docker-compose.yml

24 lines
513 B
YAML
Raw Permalink Normal View History

2019-10-02 09:43:32 +02:00
---
2020-10-18 21:22:30 +02:00
version: "3"
2019-10-02 09:43:32 +02:00
services:
freshrss:
container_name: freshrss
2020-12-30 17:23:51 +01:00
image: thegeeklab/freshrss
2019-10-02 09:43:32 +02:00
ports:
- "80:8080"
volumes:
- freshrss_data:/var/www/app/data
- freshrss_extensions:/var/www/app/extensions
environment:
FRESHRSS_DEFAULT_USER: admin
FRESHRSS_DEFAULT_PASSWORD: freshrss
FRESHRSS_API_ENABLED: "true"
2019-10-02 09:49:10 +02:00
FRESHRSS_SALT: "38fd29ac5878c270bbfc3599723cd479d48c6c58"
2019-10-02 09:43:32 +02:00
volumes:
freshrss_data:
driver: local
freshrss_extensions:
driver: local