19 lines
413 B
YAML
19 lines
413 B
YAML
services:
|
|
emailbill:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: emailbill
|
|
restart: always
|
|
networks:
|
|
- all_in
|
|
environment:
|
|
- ASPNETCORE_ENVIRONMENT=Production
|
|
- ASPNETCORE_URLS=http://+:8080
|
|
volumes:
|
|
- /wd/apps/vols/emailbill/database:/app/database
|
|
- /wd/apps/vols/emailbill/logs:/app/logs
|
|
|
|
networks:
|
|
all_in:
|
|
external: true |