17 lines
372 B
YAML
17 lines
372 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
PYTHON_VERSION: "$PYTHON_VERSION"
|
|
DJANGO_VERSION: "$DJANGO_VERSION"
|
|
SELENIUM_VERSION: "$SELENIUM_VERSION"
|
|
command: python tests/manage.py runserver 0.0.0.0:8000
|
|
volumes:
|
|
- .:/code
|
|
network_mode: host
|
|
container_name: web_main
|