Skip to content

Commit

Permalink
chore: minor label fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
YuukanOO committed Apr 20, 2024
1 parent 4e01a35 commit 9cbf360
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/startup/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func Server(options ServerOptions, logger log.Logger) (ServerRoot, error) {
if exposedUrl, isSet := s.options.AppExposedUrl().TryGet(); isSet {
container := exposedUrl.User().Get("")

s.logger.Infow("exposing seelf container using the local target, creating it if needed, the container will restart once done",
s.logger.Infow("exposing seelf container using the local target, creating it if needed, the container may restart once done",
"container", container)

if _, err := bus.Send(s.bus, domain.WithUserID(context.Background(), domain.UserID(uid)), expose_seelf_container.Command{
Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
- HTTP_SECURE= # Force fallback to the default handling of http secure (based on EXPOSED_ON if set)
# - DEPLOYMENT_DIR_TEMPLATE={{ .Number }}-{{ .Environment }} # You can configure the deployment build directory path if you want to keep every deployment source files for example.
labels:
- app.seelf.exposed=true # Mandatory, DO NOT change if using SEEFL_EXPOSED_AS
- app.seelf.exposed=true # Mandatory, DO NOT change if using EXPOSED_ON
- app.seelf.subdomain=seelf # Subdomain where seelf will be exposed on the default target represented by EXPOSED_ON
#- traefik.http.routers.seelf.rule=Host(`seelf.docker.localhost`) # <- Change this to where you want seelf to be exposed (use the same domain as above)
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ If you choose a Docker-based installation, you **must** have [Docker >= v18.0.9]

## With Compose (recommended) {#with-compose}

Simply save the following `compose.yml` file in a folder and [configure it according to your needs](/guide/configuration):
Simply save the following `compose.yml` file in a folder, [configure it according to your needs](/guide/configuration) and run `docker compose up -d`:

```yml
services:
Expand Down

0 comments on commit 9cbf360

Please sign in to comment.