idm-service/docker-compose.yaml

18 lines
464 B
YAML
Raw Permalink Normal View History

2024-02-08 10:24:25 +01:00
version: '3.7'
2024-02-07 10:11:14 +01:00
services:
identity-manager:
build: .
2024-02-12 17:43:30 +01:00
volumes:
# montiamo "target" sul percorso delle applicazioni web di Tomcat, permettendo così aggiornamenti automatici del WAR senza necessità di ricostruire il container
# - ./target:/usr/local/tomcat/webapps/
- ./tomcat/webapps:/usr/local/tomcat/webapps/
2024-02-07 10:11:14 +01:00
ports:
2024-02-12 17:43:30 +01:00
- 8080:8080
environment:
- ADMINISTRATION_PORT_ENABLED=true
- DOMAIN_NAME=docker_domain
2024-02-08 10:24:25 +01:00