Added register page, email field, finished login + register UI, reduced the number of templates generated.
This commit is contained in:
@@ -9,6 +9,10 @@ services:
|
||||
- app_net
|
||||
- pagerino_net
|
||||
restart: on-failure:3
|
||||
environment:
|
||||
CHIRP_ADDRESS: ${CHIRP_ADDRESS}
|
||||
SERVER_API_PORT: ${SERVER_API_PORT}
|
||||
APP_ID: ${APP_ID}
|
||||
|
||||
pagerino_db:
|
||||
image: postgres:15
|
||||
@@ -27,6 +31,19 @@ services:
|
||||
# ports:
|
||||
# - "5432:5432"
|
||||
|
||||
migrate:
|
||||
image: migrate/migrate
|
||||
networks:
|
||||
- app_net
|
||||
volumes:
|
||||
- ./migrations:/migrations
|
||||
command: [
|
||||
"-path", "/migrations",
|
||||
"-database", "postgres://${DB_USER}:${DB_PASSWORD}@${DB_NAME}:5432/pagerino_db?sslmode=disable",
|
||||
"up"
|
||||
]
|
||||
depends_on:
|
||||
- pagerino_db
|
||||
|
||||
volumes:
|
||||
dbdata:
|
||||
|
||||
Reference in New Issue
Block a user