sample Docker/-compose file

This commit is contained in:
matthias@matsewe.de
2024-07-02 13:51:19 +02:00
parent dbaf0c5e4c
commit b48a27b2a3
5 changed files with 36 additions and 3 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: "3.7"
services:
liederwahl-dev:
build: .
container_name: liederwahl-dev
restart: unless-stopped
volumes:
- .:/code
- liederwahl-dev:/data
ports:
- 80:80
environment:
- LIST_URL=${LIST_URL}
- NO_LOGIN=true
- RELOAD_ON_FIRST_RUN=false
volumes:
liederwahl-dev: