# Use the official Docker image for the version you want FROM cooderl/wewe-rss-sqlite:latest # Name our service LABEL name="wewe-rss" # Expose port 4000 to other services EXPOSE 4000 # Set environment variables ENV DATABASE_TYPE=sqlite ENV AUTH_CODE=123567 # Define the volume for persistent data VOLUME /app/data # Start the application CMD ["docker", "run", "-d", "-p", "4000:4000"]