diff --git a/docker-compose.yaml b/docker-compose.yaml index 38541e3..1e3fc58 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -8,10 +8,18 @@ services: - ./nginx/:/etc/nginx/ - ./CertSSL:/etc/nginx/ssl - ./assets/logo.png:/etc/nginx/assets/logo.png + - ./docs/dist:/usr/share/ depends_on: - server - chart - web + - docs + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost"] + interval: 10s + retries: 5 + start_period: 30s + timeout: 10s server: build: @@ -38,7 +46,7 @@ services: depends_on: postgres: condition: service_healthy - + web: build: context: ./ @@ -50,6 +58,19 @@ services: - './CertSSL:/CertSSL' - './config.yaml:/config.yaml' + docs: + build: + context: ./docs + dockerfile: Dockerfile + restart: unless-stopped + volumes: + - ./docs/dist:/docs/dist # Bind mount for the dist folder + healthcheck: + test: ["CMD", "test", "-f", "/docs/dist/.built"] # Check if the build is complete + interval: 5s + timeout: 10s + retries: 5 + collect-currency: build: context: ./ diff --git a/docs/Dockerfile b/docs/Dockerfile new file mode 100644 index 0000000..62188f5 --- /dev/null +++ b/docs/Dockerfile @@ -0,0 +1,9 @@ +FROM node:20-alpine + +WORKDIR / + +COPY ./package*.json . + +RUN npm install + +CMD ["npm", "run", "build"] diff --git a/nginx/docs/nginx.conf b/nginx/docs/nginx.conf new file mode 100644 index 0000000..f08d409 --- /dev/null +++ b/nginx/docs/nginx.conf @@ -0,0 +1,3 @@ +root dist; + +try_files $uri $uri/ /index.html; \ No newline at end of file diff --git a/nginx/nginx.conf b/nginx/nginx.conf index b4e96b4..953ad70 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -25,5 +25,6 @@ http { include chart/nginx.conf; include server/nginx.conf; include web/nginx.conf; + include docs/nginx.conf; } } \ No newline at end of file