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.

36 lines
690 B

version: '3.8'
services:
backend:
image: pedidosbackend:1
ports:
- target: 8080
published: 8080
protocol: tcp
mode: host
networks:
- desarrollo_net
db:
image: postgres:15.0-bullseye
environment:
- TZ=America/Guayaquil
- POSTGRES_DB=pedidosdb
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- PGDATA=/var/lib/postgresql/data/pgdata
volumes:
- pg_tendencia_data:/var/lib/postgresql/data/pgdata
networks:
- desarrollo_net
volumes:
pg_tendencia_data:
external: true
networks:
desarrollo_net:
external: true
secrets:
db_dev_pass:
external: true