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.mdx #40

Merged
merged 4 commits into from
Sep 28, 2024
Merged
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
24 changes: 15 additions & 9 deletions pages/docs/setup/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,22 @@ import { Callout } from 'nextra-theme-docs'
container_name: admin
restart: unless-stopped
environment:
ADMIN_GENERAL_HOST: 0.0.0.0
ADMIN_GENERAL_PORT: 7273
ADMIN_GENERAL_USERNAME: admin
ADMIN_GENERAL_PASSWORD: password
ADMIN_DRAGONITE_API_ENDPOINT: http://dragonite:7272
ADMIN_DRAGONITE_API_SECRET: secret
ADMIN_GOLBAT_API_ENDPOINT: http://golbat:9001
ADMIN_GOLBAT_API_SECRET: golbat1234
ADMIN.GENERAL.HOST=0.0.0.0
ADMIN.GENERAL.PORT=7273
ADMIN.GENERAL.USERNAME=admin
ADMIN.GENERAL.PASSWORD=password
ADMIN.GENERAL.LOG_LEVEL=info
ADMIN.GENERAL.API_SECRET=''

ADMIN.BACKENDS.0.DRAGONITE_ENDPOINT=http://dragonite:7272
ADMIN.BACKENDS.0.GOLBAT_ENDPOINT=http://golbat:9001
ADMIN.BACKENDS.0.GOLBAT_API_SECRET=''

#ADMIN.BACKENDS.1.DRAGONITE_ENDPOINT=http://dragonite:7274
#ADMIN.BACKENDS.1.GOLBAT_ENDPOINT=http://golbat:9002
#ADMIN.BACKENDS.1.GOLBAT_API_SECRET=""
ports:
Yhatax marked this conversation as resolved.
Show resolved Hide resolved
- '7273:7273' # change left one for external port
- "7273:7273" # change left one for external port
golbat:
image: ghcr.io/unownhash/golbat:main
container_name: golbat
Expand Down