Move portainer to beast mode port and add vikunja to git

This commit is contained in:
Isaac Shoebottom 2024-05-30 12:11:25 -03:00
parent 3bfee4d564
commit 131ef824bd
2 changed files with 21 additions and 2 deletions

View File

@ -9,7 +9,7 @@ services:
environment: environment:
- VIRTUAL_HOST=portainer.shoebottom.ca - VIRTUAL_HOST=portainer.shoebottom.ca
ports: ports:
- 9443:9000 - 82:9000
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- /docker/appdata/portainer/data:/data - /docker/appdata/portainer/data:/data

View File

@ -0,0 +1,19 @@
version: '3'
services:
vikunja:
image: vikunja/vikunja
container_name: vikunja
environment:
VIKUNJA_SERVICE_JWTSECRET: TFph0aZKaoDL4zQESE
VIKUNJA_SERVICE_PUBLICURL: https://vikunja.shoebottom.ca/
VIKUNJA_SERVICE_ENABLEREGISTRATION: false
# Note the default path is /app/vikunja/vikunja.db.
# This config variable moves it to a different folder so you can use a volume and
# store the database file outside the container so state is persisted even if the container is destroyed.
VIKUNJA_DATABASE_PATH: /db/vikunja.db
ports:
- 3456:3456
volumes:
- /docker/appdata/vikunja/files:/app/vikunja/files
- /docker/appdata/vikunja/db:/db
restart: unless-stopped