docker-compose.yml
450 bytes
| 1 | services: |
|---|---|
| 2 | app: |
| 3 | build: |
| 4 | context: . |
| 5 | dockerfile: Dockerfile |
| 6 | target: production |
| 7 | args: |
| 8 | # Override via shell env or a docker-compose .env file. |
| 9 | # Default assumes the backend runs on the same host at port 90. |
| 10 | VITE_API_BASE_URL: ${VITE_API_BASE_URL:-https://travel.rasmusj.com/api/v1/} |
| 11 | image: rasmju-js-a7:latest |
| 12 | container_name: rasmju-js-a7 |
| 13 | ports: |
| 14 | - "91:80" |
| 15 | restart: unless-stopped |
| 16 | |