blob: eee5ef32fd7a145c41f3f34cef76bd6fac98506f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
version: '3'
services:
newspipe:
build: .
tty: true
environment:
- Newspipe_CONFIG=/newspipe/instance/sqlite.py
command:
- /bin/sh
- -c
- |
poetry run pybabel compile -d newspipe/translations
poetry run ./runserver.py
volumes:
- .:/newspipe
ports:
- "5000:5000"
|