16 lines
281 B
YAML
16 lines
281 B
YAML
version: '3'
|
|
|
|
services:
|
|
internal_server:
|
|
image: nginx
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/templates/default.conf.template
|
|
restart: always
|
|
environment:
|
|
- URL_DOWNLOAD=${URL_DOWNLOAD}
|
|
networks:
|
|
- internal_network
|
|
|
|
networks:
|
|
internal_network:
|