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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
| version: "3" services: rss: image: wangqiru/ttrss:latest container_name: ttrss ports: - 2077:80 environment: - SELF_URL_PATH=http: - DB_PASS=ttrss - PUID=1000 - PGID=1000 volumes: - feed-icons:/var/www/feed-icons/ networks: - public_access - service_only - database_only stdin_open: true tty: true restart: always
mercury: image: wangqiru/mercury-parser-api:latest container_name: mercury networks: - public_access - service_only restart: always
opencc: image: wangqiru/opencc-api-server:latest container_name: opencc environment: - NODE_ENV=production networks: - service_only restart: always
database: image: postgres:13-alpine container_name: postgres environment: - POSTGRES_PASSWORD=ttrss volumes: - ./postgres/data/:/var/lib/postgresql/data networks: - database_only restart: always
volumes: feed-icons:
networks: public_access: service_only: internal: true database_only: internal: true
|