Files
photobooth/docker-compose.yml

12 lines
253 B
YAML
Raw Permalink Normal View History

version: '3.8'
services:
photobooth:
image: nginx:alpine
container_name: photobooth
volumes:
- ./dist:/usr/share/nginx/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- '8080:80'
restart: unless-stopped