Skip to content

Instantly share code, notes, and snippets.

@jll90
Last active December 24, 2020 01:40
Show Gist options
  • Save jll90/e2b12b9b6662d945c349d8f443a5a761 to your computer and use it in GitHub Desktop.
Save jll90/e2b12b9b6662d945c349d8f443a5a761 to your computer and use it in GitHub Desktop.
Lua Nginx Module Authorization docker-compose.yml
version: "3"
networks:
cluster:
external: false
services:
proxy:
build:
context: .
depends_on:
- microservice
networks:
- cluster
ports:
- "80:80"
restart: always
microservice:
build:
context: ./microservice
dockerfile: Dockerfile
networks:
- cluster
ports:
- '3000:3000'
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment