Skip to content

nginx reverse proxy #64

Answered by Op3rat0r
Op3rat0r asked this question in Q&A
Discussion options

You must be logged in to vote

I managed the problem by myself. Somehow it is also written in the documentation, how to do it. You need do adjust the docker-compose.yml file like this.

version: "3.9"

services:
  zerotier:
    image: dec0dos/zerotier-controller:latest
    container_name: zu-controller
    build:
      context: .
      dockerfile: ./docker/zerotier/Dockerfile
    restart: unless-stopped
    volumes:
      - controller_data:/var/lib/zerotier-one
    expose:
      - "9993/tcp"
    ports:
      - "9993:9993/udp"
  zero-ui:
    image: dec0dos/zero-ui:latest
    container_name: zu-main
    build:
      context: .
      dockerfile: ./docker/zero-ui/Dockerfile
    restart: unless-stopped
    depends_on:
      …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Op3rat0r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant