docs/compose.yaml
Andros Fenollosa f406fec96b
Some checks failed
Gitea Actions Deploy / deploy (push) Has been cancelled
Update compose.yaml
2024-06-28 09:34:21 +02:00

18 lines
277 B
YAML

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