Last active
December 24, 2020 01:40
-
-
Save jll90/e2b12b9b6662d945c349d8f443a5a761 to your computer and use it in GitHub Desktop.
Lua Nginx Module Authorization docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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