Docker + docker compose support

This commit is contained in:
Thomas Sileo
2022-07-18 20:44:55 +02:00
parent 3e7ad917e2
commit fe88481431
10 changed files with 141 additions and 29 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: "3"
services:
server:
image: microblogpub/microblogpub:latest
container_name: microblogpub
user: 1000:1000
restart: always
volumes:
- ./data:/app/data
ports:
- "8000:8000"