12 lines
277 B
YAML
Executable File
12 lines
277 B
YAML
Executable File
pystagram:
|
|
image: django
|
|
container_name: pystagram
|
|
restart: always
|
|
external_links:
|
|
- mariadb
|
|
ports:
|
|
- '9002:8000'
|
|
volumes:
|
|
- './code:/code'
|
|
command: python manage.py runserver 0.0.0.0:8000
|
|
# command: django-admin.py startproject pystagram . |