mirror of
https://github.com/Django-LiveView/docs.git
synced 2024-11-10 02:45:42 +01:00
18 lines
265 B
YAML
18 lines
265 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/:/var/www/html
|