Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker-compose-browserless.yaml #533

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/docker/docker-compose-browserless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
# To start the containers, run:
# docker-compose -f docs/docker/docker-compose-browserless.yaml up

version: '3.9'

services:
big-agi:
container_name: big-agi
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a lint error here, because the indent is the same as the big-agi: and should be more?

image: ghcr.io/enricoros/big-agi:latest
ports:
- "3000:3000"
Expand All @@ -22,10 +21,11 @@ services:
command: [ "next", "start", "-p", "3000" ]
depends_on:
- browserless
restart: unless-stopped

browserless:
container_name: browserless
image: browserless/chrome:latest
ports:
- "9222:3000" # Map host's port 9222 to container's port 3000
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this needed? I see it's removed, but it could be important?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: this does not seem to be needed anymore indeed. do you know if it's safe to remove it for everyone?

environment:
- MAX_CONCURRENT_SESSIONS=10
- MAX_CONCURRENT_SESSIONS=10
restart: unless-stopped