static-files-article/docker-compose.yml
2023-08-01 00:07:09 +03:00

18 lines
352 B
YAML

services:
staticfiles-api:
build:
context: .
target: django-static-builder
image: staticfiles-api:develop
restart: unless-stopped
staticfiles-front:
build:
context: .
target: front
image: staticfiles-front:develop
volumes:
- ./conf/nginx.conf:/etc/nginx/nginx.conf:ro
ports:
- 80:80