Skip to content
Discussion options

You must be logged in to vote

@grasscarp00 The server is launched via Thruster. In their README, there's a list of ENV variables you can specify to customize the ports. The one you're looking for is HTTP_PORT.

Here's my docker-compose.yml as example:

services:
  web:
    image: ghcr.io/basecamp/fizzy:main
    restart: unless-stopped
    ports:
      - "8080:8080"
    environment:
      - HTTP_PORT=8080
      - SECRET_KEY_BASE=abcdefgh
      - BASE_URL=https://fizzy.example.com
      - MAILER_FROM_ADDRESS=noreply@example.com
      - SMTP_ADDRESS=mail.example.com
      - SMTP_USERNAME=user
      - SMTP_PASSWORD=pass
      - VAPID_PRIVATE_KEY=myvapidprivatekey
      - VAPID_PUBLIC_KEY=myvapidpublickey
    volumes:
      - 

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@grasscarp00
Comment options

Answer selected by grasscarp00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants