rss-reader/docker-compose.yml

14 lines
225 B
YAML
Raw Normal View History

2022-07-08 02:05:28 +08:00
version: "3"
services:
2023-07-27 22:59:35 +08:00
server:
build:
context: .
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"