rss-reader/docker-compose.yml

14 lines
276 B
YAML
Raw Permalink Normal View History

2022-07-08 02:05:28 +08:00
version: "3"
services:
2023-07-27 22:59:35 +08:00
server:
2023-07-28 02:09:43 +08:00
image: srcrs/rss-reader:latest
container_name: rss-reader
2022-07-08 02:05:28 +08:00
restart: always
ports:
- "8080:8080"
2022-07-08 02:05:28 +08:00
volumes:
2023-07-27 22:59:35 +08:00
- "$PWD/index.html:/app/index.html"
- "$PWD/db:/app/db"
2023-07-28 02:09:43 +08:00
- "$PWD/config.json:/app/config.json"