-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
26 lines (25 loc) · 676 Bytes
/
docker-compose.yaml
File metadata and controls
26 lines (25 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
services:
freshrss:
image: freshrss/freshrss:latest
container_name: freshrss_wallabag
restart: unless-stopped
logging:
options:
max-size: 10m
volumes:
- ./:/var/www/FreshRSS/extensions/freshrss-wallabag-button:ro
- ./fresh_rss_data:/var/www/FreshRSS/data:rw
ports:
- 8080:80
depends_on:
- wallabag
wallabag:
image: wallabag/wallabag
container_name: wallabag
environment:
SYMFONY__ENV__DOMAIN_NAME: "http://localhost:8081"
ports:
- 8081:80
volumes:
- ./wallabag_data/images:/var/www/wallabag/web/assets/images:rw
- ./wallabag_data/data:/var/www/wallabag/data:rw