docs/compose.yaml
2024-06-24 17:44:17 +02:00

18 lines
276 B
YAML

services:
one-el:
build: .
restart: "no"
volumes:
- .:/usr/src/app/
nginx:
restart: on-failure
image: nginx:alpine
ports:
- 9100:80
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
- ./public:/usr/share/nginx/html