Fixed config info

This commit is contained in:
2025-04-11 00:51:37 -04:00
parent 8b68653b6f
commit 56ac66e9b1
29 changed files with 682 additions and 70 deletions

View File

@@ -6,6 +6,18 @@ x-env_file: &env
name: aviation
services:
httpd:
build: ./httpd
container_name: aviation-httpd
env_file: *env
ports:
- "${HTTPD_HTTP_PORT:-8080}:80"
- "${HTTPD_HTTPS_PORT:-8443}:443"
networks:
- frontend
- backend
restart: unless-stopped
postgres:
image: postgis/postgis:17-3.5
container_name: aviation-postgres
@@ -31,7 +43,7 @@ services:
volumes:
- redis:/data
ports:
- ${REDIS_PORT:-6379}:6379
- "${REDIS_PORT:-6379}:6379"
healthcheck:
test: [ "CMD", "redis-cli", "--raw", "incr", "ping" ]
interval: 10s
@@ -52,8 +64,8 @@ services:
volumes:
- minio:/data
ports:
- ${MINIO_PORT:-9000}:9000
- ${MINIO_PORT_INTERNAL:-9001}:9001
- "${MINIO_PORT:-9000}:9000"
- "${MINIO_PORT_INTERNAL:-9001}:9001"
networks:
- backend
profiles:
@@ -67,7 +79,7 @@ services:
ports:
- "${API_PORT:-5000}:5000"
build:
context: api
context: ./api
dockerfile: Dockerfile
depends_on:
- postgres
@@ -86,9 +98,9 @@ services:
environment:
- NODE_ENV=${NODE_ENV:-development}
ports:
- ${UI_PORT:-3000}:3000
- "${UI_PORT:-3000}:3000"
build:
context: ./ui/
context: ./ui
dockerfile: Dockerfile
volumes:
- ./ui/src:/app/src