Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions deep-sea-stories/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ services:
dockerfile: packages/web/Dockerfile
args:
- VITE_FISHJAM_ID=${FISHJAM_ID}
- VITE_BACKEND_URL=${BACKEND_URL:-http://nginx/api}
- VITE_BACKEND_URL=${BACKEND_URL:-/api/v1}
environment:
- VITE_BACKEND_URL=http://nginx/api
- VITE_BACKEND_URL=/api/v1
restart: unless-stopped
depends_on:
- backend
Expand Down
2 changes: 1 addition & 1 deletion deep-sea-stories/packages/backend/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ try {
await notifierService.initialize();

await fastify.ready();
await fastify.listen({ port: CONFIG.PORT });
await fastify.listen({ port: CONFIG.PORT, host: '0.0.0.0' });
} catch (err) {
fastify.log.error(err);
process.exit(1);
Expand Down