mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2025-02-17 02:10:42 +03:00
14 lines
243 B
YAML
14 lines
243 B
YAML
version: '3'
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
image: gableroux/django-rest-auth-demo
|
|
command: python manage.py runserver 0.0.0.0:1234
|
|
environment:
|
|
PYTHONUNBUFFERED: 1
|
|
volumes:
|
|
- .:/code
|
|
ports:
|
|
- "1234:1234"
|