remove docker-compose from tracking

main
Dominik Madarász 2023-01-12 20:02:33 +00:00
parent d6e1741920
commit ff5b6f74a6
2 changed files with 22 additions and 0 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ docs/dist/
requirements.txt
app/_version.py
app/static/favicon.ico
docker-compose.yml

View File

@ -0,0 +1,21 @@
version: "3"
services:
server:
build: .
image: microblogpub
container_name: microblogpub
user: 1000:1000
restart: always
networks:
- nproxy
volumes:
- ./data:/app/data
- ./app/static:/app/app/static
ports:
- "8000:8000"
networks:
nproxy:
external:
name: nproxy