notes/docker-compose.yml

13 lines
229 B
YAML

services:
server:
build:
context: docker
dockerfile: ./docker/Dockerfile
container_name: server
restart: always
volumes:
- ./astro/dist:/usr/share/nginx/html:ro
ports:
- "42069:80"