creando plantilla inicio
All checks were successful
build-and-push / build (push) Successful in 10s
build-and-push / deploy (push) Successful in 3s

This commit is contained in:
2025-05-02 18:33:15 -06:00
parent e1eb21b3a3
commit 5f161649f0
2 changed files with 6 additions and 0 deletions

1
.env Normal file
View File

@@ -0,0 +1 @@
COMPOSE_PROJECT_NAME=planilla

View File

@@ -1,6 +1,8 @@
version: '3.8' version: '3.8'
services: services:
db: db:
container_name: planilla-db
image: postgres:15 image: postgres:15
environment: environment:
POSTGRES_USER: usuario POSTGRES_USER: usuario
@@ -12,6 +14,7 @@ services:
- app-net - app-net
api: api:
container_name: planilla-api
build: ./api build: ./api
depends_on: depends_on:
- db - db
@@ -26,6 +29,7 @@ services:
- app-net - app-net
ui: ui:
container_name: planilla-ui
build: ./ui build: ./ui
depends_on: depends_on:
- api - api
@@ -34,6 +38,7 @@ services:
networks: networks:
- app-net - app-net
- principal - principal
volumes: volumes:
db_data: db_data: