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.
22 lines
440 B
22 lines
440 B
11 months ago
|
services:
|
||
|
servoauth:
|
||
|
image: go_auth
|
||
|
container_name: servoauth
|
||
|
ports:
|
||
|
- "48002:48000"
|
||
|
environment:
|
||
|
- "DBHOST=host.docker.internal"
|
||
|
- "DBPORT=5432"
|
||
|
- "DBUSER=asterisk"
|
||
|
- "DBPASS=asterisk"
|
||
|
- "DBNAME=asterisk"
|
||
|
- "DBDRIVER=postgres"
|
||
|
- "DBPOOLSIZE=100"
|
||
|
extra_hosts:
|
||
|
- "host.docker.internal:host-gateway"
|
||
|
networks:
|
||
|
- dbcon
|
||
|
networks:
|
||
|
dbcon:
|
||
|
external: true
|