1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-10-31 00:17:42 +02:00

Expose 9092 port on docker container (#517)

If this commit merged focalboard helm chart would be able to implement a metrics endpoint.
This commit is contained in:
Stavros Foteinopoulos
2021-06-22 11:08:16 +03:00
committed by GitHub
parent 1f762b238a
commit 1f7470aca7
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ FROM alpine:latest
ARG PUID=2000 ARG PUID=2000
ARG PGID=2000 ARG PGID=2000
EXPOSE 8000/tcp EXPOSE 8000/tcp 9092/tcp
VOLUME /data VOLUME /data

View File

@@ -6,14 +6,14 @@ services:
container_name: focalboard container_name: focalboard
depends_on: depends_on:
- focalboard-db - focalboard-db
expose: expose:
- 8000 - 8000
environment: environment:
- VIRTUAL_HOST=focalboard.local - VIRTUAL_HOST=focalboard.local
- VIRTUAL_PORT=8000 - VIRTUAL_PORT=8000
volumes: volumes:
- "./config.json:/opt/focalboard/config.json" - "./config.json:/opt/focalboard/config.json"
proxy: proxy:
image: jwilder/nginx-proxy:latest image: jwilder/nginx-proxy:latest
container_name: focalboard-proxy container_name: focalboard-proxy

View File

@@ -4,7 +4,7 @@ services:
build: build:
context: ./ context: ./
container_name: focalboard container_name: focalboard
ports: ports:
- 80:8000 - 80:8000
environment: environment:
- VIRTUAL_HOST=focalboard.local - VIRTUAL_HOST=focalboard.local