[GH-ISSUE #170] Register issues #2956

Open
opened 2026-06-15 05:22:07 -05:00 by GiteaMirror · 6 comments
Owner

Originally created by @Nightmares9108 on GitHub (Jun 4, 2026).
Original GitHub issue: https://github.com/reconurge/flowsint/issues/170

everything went fine during the installation,
when trying to create an account
failed to fetch

Image ❯ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 24e3dfa325b9 flowsint-prod-app "/docker-entrypoint.…" 3 minutes ago Up 2 minutes (healthy) 80/tcp, 0.0.0.0:5173->8080/tcp, [::]:5173->8080/tcp flowsint-app-prod 9681c915a951 flowsint-prod-celery "./entrypoint.sh cel…" 3 minutes ago Up 2 minutes (healthy) 5001/tcp flowsint-celery-prod bbeafc496cae flowsint-prod-api "./entrypoint.sh uvi…" 3 minutes ago Up 2 minutes (healthy) 0.0.0.0:5001->5001/tcp, [::]:5001->5001/tcp flowsint-api-prod c67f326482ef postgres:15-alpine "docker-entrypoint.s…" 3 minutes ago Up 3 minutes (healthy) 0.0.0.0:5433->5432/tcp, [::]:5433->5432/tcp flowsint-postgres-prod 93b0b0c76674 redis:7-alpine "docker-entrypoint.s…" 3 minutes ago Up 3 minutes (healthy) 0.0.0.0:6379->6379/tcp, [::]:6379->6379/tcp flowsint-redis-prod c2a869121f56 neo4j:5 "tini -g -- /startup…" 3 minutes ago Up 3 minutes (healthy) 0.0.0.0:7474->7474/tcp, [::]:7474->7474/tcp, 7473/tcp, 0.0.0.0:7687->7687/tcp, [::]:7687->7687/tcp flowsint-neo4j-prod

ubuntu-srv up to date

Originally created by @Nightmares9108 on GitHub (Jun 4, 2026). Original GitHub issue: https://github.com/reconurge/flowsint/issues/170 everything went fine during the installation, when trying to create an account failed to fetch <img width="600" height="645" alt="Image" src="https://github.com/user-attachments/assets/640fd451-5c51-4fd4-926d-c83dfaf13328" /> ❯ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 24e3dfa325b9 flowsint-prod-app "/docker-entrypoint.…" 3 minutes ago Up 2 minutes (healthy) 80/tcp, 0.0.0.0:5173->8080/tcp, [::]:5173->8080/tcp flowsint-app-prod 9681c915a951 flowsint-prod-celery "./entrypoint.sh cel…" 3 minutes ago Up 2 minutes (healthy) 5001/tcp flowsint-celery-prod bbeafc496cae flowsint-prod-api "./entrypoint.sh uvi…" 3 minutes ago Up 2 minutes (healthy) 0.0.0.0:5001->5001/tcp, [::]:5001->5001/tcp flowsint-api-prod c67f326482ef postgres:15-alpine "docker-entrypoint.s…" 3 minutes ago Up 3 minutes (healthy) 0.0.0.0:5433->5432/tcp, [::]:5433->5432/tcp flowsint-postgres-prod 93b0b0c76674 redis:7-alpine "docker-entrypoint.s…" 3 minutes ago Up 3 minutes (healthy) 0.0.0.0:6379->6379/tcp, [::]:6379->6379/tcp flowsint-redis-prod c2a869121f56 neo4j:5 "tini -g -- /startup…" 3 minutes ago Up 3 minutes (healthy) 0.0.0.0:7474->7474/tcp, [::]:7474->7474/tcp, 7473/tcp, 0.0.0.0:7687->7687/tcp, [::]:7687->7687/tcp flowsint-neo4j-prod ubuntu-srv up to date
Author
Owner

@dextmorgn commented on GitHub (Jun 4, 2026):

Hey @Nightmares9108,

Thanks for raising this issue.

Are you working on a fully local setup or trying to deploy it on a network ?

<!-- gh-comment-id:4621274019 --> @dextmorgn commented on GitHub (Jun 4, 2026): Hey @Nightmares9108, Thanks for raising this issue. Are you working on a fully local setup or trying to deploy it on a network ?
Author
Owner

@Nightmares9108 commented on GitHub (Jun 4, 2026):

hello i m in my local network i m on a windows setup and i try deploying it on my local server

<!-- gh-comment-id:4621284647 --> @Nightmares9108 commented on GitHub (Jun 4, 2026): hello i m in my local network i m on a windows setup and i try deploying it on my local server
Author
Owner

@dextmorgn commented on GitHub (Jun 4, 2026):

Then I suggest you to check this issue https://github.com/reconurge/flowsint/issues/16

It covers the deploy part (especially latest comments).

Let me know if you have any trouble with the setup ;)

<!-- gh-comment-id:4621327224 --> @dextmorgn commented on GitHub (Jun 4, 2026): Then I suggest you to check this issue https://github.com/reconurge/flowsint/issues/16 It covers the deploy part (especially latest comments). Let me know if you have any trouble with the setup ;)
Author
Owner

@Romainadr commented on GitHub (Jun 5, 2026):

the issue can be fixed if you add in docker-compose.prod.yml the variable :

  • ALLOWED_ORIGINS=${ALLOWED_ORIGINS}

here:

api:
build:
context: .
dockerfile: flowsint-api/Dockerfile
target: production
container_name: flowsint-api-prod
restart: always
ports:
- "5001:5001"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- DATABASE_URL=postgresql://${POSTGRES_USER:-flowsint}:${POSTGRES_PASSWORD:-flowsint}@postgres:5432/${POSTGRES_DB:-flowsint}
- NEO4J_URI_BOLT=bolt://neo4j:7687
- NEO4J_USERNAME=${NEO4J_USERNAME}
- NEO4J_PASSWORD=${NEO4J_PASSWORD}
- AUTH_SECRET=${AUTH_SECRET}
- MASTER_VAULT_KEY_V1=${MASTER_VAULT_KEY_V1}
- REDIS_URL=redis://redis:6379/0
- ALLOWED_ORIGINS=${ALLOWED_ORIGINS}

<!-- gh-comment-id:4629531920 --> @Romainadr commented on GitHub (Jun 5, 2026): the issue can be fixed if you add in docker-compose.prod.yml the variable : - ALLOWED_ORIGINS=${ALLOWED_ORIGINS} here: api: build: context: . dockerfile: flowsint-api/Dockerfile target: production container_name: flowsint-api-prod restart: always ports: - "5001:5001" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro environment: - DATABASE_URL=postgresql://${POSTGRES_USER:-flowsint}:${POSTGRES_PASSWORD:-flowsint}@postgres:5432/${POSTGRES_DB:-flowsint} - NEO4J_URI_BOLT=bolt://neo4j:7687 - NEO4J_USERNAME=${NEO4J_USERNAME} - NEO4J_PASSWORD=${NEO4J_PASSWORD} - AUTH_SECRET=${AUTH_SECRET} - MASTER_VAULT_KEY_V1=${MASTER_VAULT_KEY_V1} - REDIS_URL=redis://redis:6379/0 - ALLOWED_ORIGINS=${ALLOWED_ORIGINS}
Author
Owner

@dextmorgn commented on GitHub (Jun 8, 2026):

Hello @Nightmares9108,

Were you able to make it work ?

<!-- gh-comment-id:4650266118 --> @dextmorgn commented on GitHub (Jun 8, 2026): Hello @Nightmares9108, Were you able to make it work ?
Author
Owner

@Nightmares9108 commented on GitHub (Jun 8, 2026):

Hello @Nightmares9108,

Were you able to make it work ?

Sorry no i didnt try again...
Updating soon

<!-- gh-comment-id:4650428690 --> @Nightmares9108 commented on GitHub (Jun 8, 2026): > Hello @Nightmares9108, > > Were you able to make it work ? Sorry no i didnt try again... Updating soon
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/flowsint#2956