mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-03-22 01:34:11 -05:00
This makes administration a little easier for me. It'll also help if I need an actual API back end for this site in the future.
18 lines
293 B
YAML
18 lines
293 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
|
|
- ./public:/usr/share/nginx/html:ro
|