Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Mafyuh/iac
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1a95fc848d2388d698c184c1d16b491b4c940b5d
Choose a base ref
..
head repository: Mafyuh/iac
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9cc646b9b8c3df4321b949ecabba397952fd9db8
Choose a head ref
Showing with 3 additions and 23 deletions.
  1. +3 −23 docker/portainer/docker-compose.yml
26 changes: 3 additions & 23 deletions docker/portainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -15,35 +15,15 @@ services:
image: vikunja/vikunja@sha256:c31c7d6cad49038ab8a7d1414845d4c45539b43dd6ddd082bcd148e6fcd7b01c
environment:
VIKUNJA_SERVICE_PUBLICURL: $VIKUNJA_SERVICE_PUBLICURL
VIKUNJA_DATABASE_HOST: db
VIKUNJA_DATABASE_PASSWORD: $VIKUNJA_DATABASE_PASSWORD
VIKUNJA_DATABASE_TYPE: mysql
VIKUNJA_DATABASE_USER: vikunja
VIKUNJA_DATABASE_DATABASE: vikunja
VIKUNJA_DATABASE_TYPE: sqlite
VIKUNJA_SERVICE_JWTSECRET: $VIKUNJA_SERVICE_JWTSECRET
VIKUNJA_DATABASE_PATH: /db/vikunja.db
ports:
- 3456:3456
volumes:
- /home/mafyuh/vikunja/files:/app/vikunja/files
depends_on:
db:
condition: service_healthy
- /home/mafyuh/vikunja/db:/db
restart: unless-stopped
db:
image: mariadb:10
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
environment:
MYSQL_ROOT_PASSWORD: $MYSQL_ROOT_PASSWORD
MYSQL_USER: vikunja
MYSQL_PASSWORD: $MYSQL_PASSWORD
MYSQL_DATABASE: vikunja
volumes:
- /home/mafyuh/vikunja/db:/var/lib/mysql
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "mysqladmin ping -h localhost -u $$MYSQL_USER --password=$$MYSQL_PASSWORD"]
interval: 2s
start_period: 30s

volumes:
portainer_data: