docs/compose.yaml

18 lines
277 B
YAML
Raw Normal View History

2024-06-23 23:10:23 +02:00
services:
one-el:
build: .
restart: "no"
volumes:
- .:/usr/src/app/
2024-06-24 17:18:26 +02:00
nginx:
2024-06-28 09:34:21 +02:00
restart: "always"
2024-06-24 17:18:26 +02:00
image: nginx:alpine
ports:
2024-06-24 17:22:38 +02:00
- 9100:80
2024-06-24 17:18:26 +02:00
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
2024-06-24 21:50:10 +02:00
- ./public:/usr/share/nginx/html:ro