splatoon2.ink/docker-compose.yml
Unknown 918012c65d Add nginx container for use with nginx-proxy
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.
2017-10-27 17:32:44 -07:00

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