Files
pole-book/client/docker-compose.yml
2025-06-22 06:49:39 +02:00

27 lines
577 B
YAML

version: '3.8'
services:
client:
build:
context: .
dockerfile: Dockerfile
container_name: pole-book-astro-client
restart: unless-stopped
ports:
- "4114:4114"
env_file:
- .env
environment:
NODE_ENV: ${NODE_ENV}
STRAPI_URL: ${STRAPI_URL}
volumes:
- ./src:/opt/app/src
- ./public:/opt/app/public
- ./astro.config.mjs:/opt/app/astro.config.mjs
- ./tsconfig.json:/opt/app/tsconfig.json
networks:
- pole-book_strapi-network
networks:
pole-book_strapi-network:
external: true