Files
jared/docker-compose.yml

26 lines
496 B
YAML
Raw Normal View History

version: "3.8"
services:
jared:
build: .
container_name: jared-service
restart: unless-stopped
ports:
- "5052:5052"
environment:
- H_INSTANCIA=${H_INSTANCIA}
- DB_HOST=${DB_HOST}
- DB_PORT=${DB_PORT}
- DB_NAME=${DB_NAME}
- DB_USER=${DB_USER}
- DB_PASSWORD=${DB_PASSWORD}
- PORT=5052
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- tzzr-network
networks:
tzzr-network:
external: true