2019-05-30 12:49:29 +02:00
|
|
|
version: '3'
|
2019-04-12 09:04:31 +02:00
|
|
|
|
2019-05-30 12:49:29 +02:00
|
|
|
services:
|
2019-08-30 21:02:06 +02:00
|
|
|
proxy:
|
|
|
|
image: nginx:1.17-alpine
|
2019-05-30 12:49:29 +02:00
|
|
|
volumes:
|
2019-08-30 21:02:06 +02:00
|
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
2019-05-30 12:49:29 +02:00
|
|
|
ports:
|
2019-10-08 19:46:02 +02:00
|
|
|
- 8000:80
|
2019-08-30 21:02:06 +02:00
|
|
|
depends_on:
|
2019-08-31 14:35:22 +02:00
|
|
|
- homepage
|
2019-05-10 12:54:39 +02:00
|
|
|
|
2019-08-31 11:39:50 +02:00
|
|
|
homepage:
|
|
|
|
build:
|
|
|
|
context: '.'
|
|
|
|
dockerfile: ./Dockerfile.python
|
2019-10-08 19:46:02 +02:00
|
|
|
working_dir: /website/homepage
|
2019-08-31 11:39:50 +02:00
|
|
|
volumes:
|
2019-10-08 19:46:02 +02:00
|
|
|
- .:/website
|
2019-08-31 11:39:50 +02:00
|
|
|
- homepagedeps:/root/.local
|
|
|
|
command: make devserver
|
2019-09-04 16:20:35 +02:00
|
|
|
environment:
|
|
|
|
DEBUG: 1
|
2019-08-31 11:39:50 +02:00
|
|
|
|
2019-06-20 12:57:36 +02:00
|
|
|
volumes:
|
2019-08-31 11:39:50 +02:00
|
|
|
homepagedeps:
|