2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/docker-compose.yml

49 lines
1.0 KiB
YAML
Raw Normal View History

2019-05-30 12:49:29 +02:00
version: '3'
2019-05-30 12:49:29 +02:00
services:
proxy:
image: nginx:1.17-alpine
2019-05-30 12:49:29 +02:00
volumes:
- ./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
depends_on:
2019-08-31 14:35:22 +02:00
- homepage
- server
2019-05-30 12:49:29 +02:00
server:
2019-10-10 09:25:16 +02:00
image: offen/offen:latest
2019-10-09 20:34:31 +02:00
command: serve
volumes:
- ./bootstrap.yml:/bootstrap.yml
2019-05-30 12:49:29 +02:00
environment:
POSTGRES_CONNECTION_STRING: postgres://postgres:develop@server_database:5432/postgres?sslmode=disable
PORT: 8080
DEVELOPMENT: '1'
COOKIE_EXCHANGE_SECRET: 3P+w6QetKO3Kn8h1YyRlCw==
EVENT_RETENTION_PERIOD: 4464h
2019-09-05 21:05:14 +02:00
ACCOUNT_USER_EMAIL_SALT: JuhbRA4lCdo8rt5qVdLpk3==
2019-09-11 20:31:45 +02:00
SECURE_COOKIE: 'off'
2019-10-08 19:46:02 +02:00
depends_on:
2019-07-05 19:54:54 +02:00
- server_database
server_database:
image: postgres:11.2
environment:
POSTGRES_PASSWORD: develop
2019-05-10 12:54:39 +02:00
homepage:
build:
context: '.'
dockerfile: ./Dockerfile.python
2019-10-08 19:46:02 +02:00
working_dir: /website/homepage
volumes:
2019-10-08 19:46:02 +02:00
- .:/website
- homepagedeps:/root/.local
command: make devserver
2019-09-04 16:20:35 +02:00
environment:
DEBUG: 1
volumes:
homepagedeps: