So i have a vm hosted on my proxmox server with docker and nginx proxy manager, it can reverse proxy any container on the same network “bridge” without any problems…
However, i have other vms on proxmox “non docker” that i eant to reverse proxy to it but I couldn’t do it… I tried using (network_mode: host) and (network: external) But it doesn’t seem to work, whenever i inspect docker network it always says that npm is running on bridge network…
Tldr I need containerized npm to reverse proxy other “non docker” proxmox vms
modifed my yml file to match yours
version: '3.8'
services:
networks:
reverse_proxy:
external: true
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
networks:
- reverse_proxy
ports:
# These ports are in format :
- '80:80' # Public HTTP Port
- '443:443' # Public HTTPS Port
- '81:81' # Admin Web Port
# Add any other Stream port you want to expose
# - '21:21' # FTP
# Uncomment the next line if you uncomment anything in the section
# environment:
# Uncomment this if you want to change the location of
# the SQLite DB file within the container
# DB_SQLITE_FILE: "/data/database.sqlite"
# Uncomment this if IPv6 is not enabled on your host
# DISABLE_IPV6: 'true'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
but when running docer compose up i get this error
validating /home/ubuntu/nginx-npm/docker-compose.yml: networks.app Additional property restart is not allowed
Ok i fixed this error and npm is running now but still can’t reverse proxy proxmox vm using npm