20 lines
432 B
YAML
20 lines
432 B
YAML
version: '3'
|
|
|
|
services:
|
|
server:
|
|
extends:
|
|
file: docker-compose.traefik.yml
|
|
service: server
|
|
image: nginx:alpine
|
|
environment:
|
|
- APPLICATION=${APPLICATION}
|
|
volumes:
|
|
- ./config/nginx.exposed.conf:/etc/nginx/templates/default.conf.template
|
|
- ./config/include:/etc/nginx/include
|
|
- ./config/http/nginx.conf:/etc/nginx/nginx.conf
|
|
restart: always
|
|
|
|
networks:
|
|
web:
|
|
external: true
|