PABX da Simples IP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
755 B

version: '3.7'
networks:
working:
driver: bridge
services:
postgresql:
build: postgresql
restart: always
container_name: postgresql
environment:
- POSTGRES_USER=contacte
- POSTGRES_PASSWORD=ctepgSQL
- POSTGRES_DB=pbx
ports:
- 5433:5432
networks:
- working
aplicativo:
build: aplicativo
container_name: aplicativo
working_dir: /var/www/html/aplicativo
ports:
- 8080:80
privileged: true
environment:
- container=docker
- DB_PORT=5433
- DB_HOST=192.168.115.83
- DB_BASE=pbx
- DB_USER=contacte
- DB_PASSWD=ctepgSQL
depends_on:
- postgresql
networks:
- working