version: '3.8' services: smesh: container_name: smesh-nginx build: context: . dockerfile: Dockerfile args: VITE_PROXY_SERVER: ${SMESH_PROXY_SERVER_URL:-http://localhost:8090} ports: - '8089:80' restart: unless-stopped networks: - smesh proxy-server: image: ghcr.io/danvergara/smesh-proxy-server:latest environment: - ALLOW_ORIGIN=${SMESH_SOCIAL_URL:-http://localhost:8089} - SMESH_PROXY_GITHUB_TOKEN=${SMESH_PROXY_GITHUB_TOKEN} - ENABLE_PPROF=true - PORT=8080 ports: - '8090:8080' networks: - smesh networks: smesh: