mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2026-02-25 02:20:17 +00:00
- vite can proxy requests to the api in dev mode - no more CORS needed in api - static api_baseurl in axios config
14 lines
395 B
YAML
14 lines
395 B
YAML
name: advent22
|
|
|
|
services:
|
|
api:
|
|
image: mcr.microsoft.com/devcontainers/python:3-3.14-trixie
|
|
volumes:
|
|
- ../:/workspaces/advent22:cached
|
|
command: sh -c "while sleep 1 & wait $!; do :; done"
|
|
|
|
ui:
|
|
image: mcr.microsoft.com/devcontainers/javascript-node:4-24-trixie
|
|
volumes:
|
|
- ../:/workspaces/advent22:cached
|
|
command: sh -c "while sleep 1 & wait $!; do :; done"
|