🔗 🐍 share thoughts, ideas, links, notes.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
version: '3.4'
|
|
|
|
services:
|
|
pandoc:
|
|
image: pandoc/core
|
|
web:
|
|
image: shaarpy
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
command: python manage.py runserver 0.0.0.0:8000 --settings=shaarpy.settings
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "8000:8000"
|
|
depends_on:
|
|
- pandoc
|
|
|