31 lines
694 B
YAML
31 lines
694 B
YAML
version: '3.1'
|
|
|
|
networks:
|
|
web:
|
|
external: true
|
|
|
|
services:
|
|
calculatorcore:
|
|
image: evocalculator.core
|
|
container_name: calculator-core
|
|
restart: unless-stopped
|
|
|
|
# depends_on:
|
|
# - joomladb
|
|
|
|
# ports:
|
|
# - 8080:80
|
|
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.backend=calculator-core"
|
|
- "traefik.docker.network=web"
|
|
- "traefik.http.routers.calculator-core.rule=Host(`calculator-core.evoleasing.ru`)"
|
|
- "traefik.http.routers.calculator-core.entrypoints=web-secure"
|
|
- "traefik.http.routers.calculator-core.tls.certresolver=le"
|
|
|
|
# volumes:
|
|
# - /snap/docker/docker_volumes/joomla/html:/var/www/html
|
|
networks:
|
|
- web
|