Files
cactoz.su/docker-compose.yml
cacto a9d2a6b15c Каркас проекта: ТЗ, nginx+gameserver(uWebSockets) в Docker, /ws echo
Frontend — чистый HTML/CSS/JS без сборки (резюме, проекты, игра-заглушки).
Gameserver — C++ на uWebSockets (CMake FetchContent), протокол hello/lobby.list_rooms/error проверен end-to-end.
2026-07-26 19:31:44 +05:00

15 lines
210 B
YAML

services:
nginx:
build:
context: .
dockerfile: nginx/Dockerfile
ports:
- "80:80"
depends_on:
- gameserver
gameserver:
build: ./gameserver
expose:
- "9001"