mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-03-22 01:34:11 -05:00
The biggest changes here include splitting the server-side JS into multiple directories (under /src/app), moving all web content to /src/web, and compiling the web app to /dist instead of /public. This layout makes more sense overall, and more closely mirrors what is used for vue-cli v3 projects.
18 lines
291 B
YAML
18 lines
291 B
YAML
version: '2'
|
|
|
|
services:
|
|
|
|
app:
|
|
build: docker/app
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./:/app
|
|
|
|
nginx:
|
|
image: nginx
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./docker/nginx/conf.d:/etc/nginx/conf.d:ro
|
|
- ./logs:/logs
|
|
- ./dist:/usr/share/nginx/html:ro
|