mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-28 02:14:35 +00:00
25 lines
587 B
YAML
25 lines
587 B
YAML
version: '3.6'
|
|
services:
|
|
samplenginxhost:
|
|
depends_on:
|
|
- samplebackend
|
|
- lpcmnginx
|
|
build:
|
|
context: ./
|
|
dockerfile: ./Environment/sample_nginx_host/Dockerfile
|
|
networks:
|
|
lp_cm_net:
|
|
ipv4_address: 172.34.128.5
|
|
ports:
|
|
- '8881:80'
|
|
samplebackend:
|
|
build:
|
|
context: ./
|
|
dockerfile: ./Environment/sample_backend/Dockerfile
|
|
restart: on-failure
|
|
networks:
|
|
lp_cm_net:
|
|
ipv4_address: 172.34.128.6
|
|
lpcmbackend:
|
|
environment:
|
|
- URL_AUTHORIZATION_ENDPOINT=http://samplebackend:8000/token_validator |