Floris Remmen

Results 16 comments of Floris Remmen

Example docker-compose could be: ``` focalboard: container_name: focalboard restart: unless-stopped build: context: https://github.com/mattermost/focalboard.git#main dockerfile: docker/Dockerfile volumes: - ./focalboard:/data environment: - VIRTUAL_HOST=focalboard.local - VIRTUAL_PORT=8000 ports: - "8000:80" ``` You should then...

@Johennes can you please elaborate on how you achieved adding this new build target?

FYI, you can build with following compose snippet: ``` focalboard: container_name: focalboard restart: unless-stopped image: focalboard:latest build: context: https://github.com/crra/focalboard-native-docker.git#main dockerfile: Dockerfile args: - focalboard_version=0.8.0 volumes: - ./focalboard/db:/opt/focalboard/data - ./focalboard/files:/opt/focalboard/fles -...

Thanks for the effort. Can you please elaborate on how this nginx module works @mrhaydari ? I'm looking specifically to run coturn from a docker-compose stack and reverse proxy using...

Hi, I've already replaced that board with an SKR 1.3, so I'm unfortunately not able to test.

You can build it straight from the repo in your compose file ``` youtube-dl: image: kmb32123/youtube-dl-server container_name: youtube-dl build: https://www.github.com/manbearwiz/youtube-dl-server.git environment: - UID=${PUID} - PGID=${PGID} - TZ=${TIMEZONE} - YDL_SERVER_PORT=${YOUTUBE_DL_PORT} volumes:...

@cluneke416 I'm using the following very simple location block for nginx reverse proxy without problems for 6 months now: ``` location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_app...

I'm sorry I can't help you with that.

@coolbeam running the code inside the docker is the same as in the original implementation.

For others running into this issue, some relevant notes & solutions from nvidia here https://github.com/NVIDIA/nvidia-docker/issues/1730#issue-1573551271