mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
Frederik Ring
4c6b2ff2c5
this was a leftover from when an offen instance was running on the same domain as the website. nginx is not needed as pelican can serve the dev content for us just fine.
20 lines
320 B
YAML
20 lines
320 B
YAML
version: '3'
|
|
|
|
services:
|
|
homepage:
|
|
ports:
|
|
- 8000:8000
|
|
build:
|
|
context: '.'
|
|
dockerfile: ./Dockerfile.python
|
|
working_dir: /website/homepage
|
|
volumes:
|
|
- .:/website
|
|
- homepagedeps:/root/.local
|
|
command: make devserver
|
|
environment:
|
|
DEBUG: 1
|
|
|
|
volumes:
|
|
homepagedeps:
|