compose.yaml 242 B raw
1
services:
2
  feeds:
3
    build: .
4
    image: ghcr.io/stevedylandev/feeds:latest
5
    ports:
6
      - "3000:3000"
7
    environment:
8
      HOST: 0.0.0.0
9
      PORT: 3000
10
      BASE_URL: ${BASE_URL:-http://localhost:3000}
11
    restart: unless-stopped