Compare commits

..

2 commits

11 changed files with 24 additions and 21 deletions

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/dns-proxy WorkingDirectory=/opt/dns-proxy
ExecStart=/usr/bin/docker-compose --project-name dns-proxy up ExecStart=/usr/bin/docker compose --project-name dns-proxy up
ExecStop=/usr/bin/docker-compose --project-name dns-proxy down ExecStop=/usr/bin/docker compose --project-name dns-proxy down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitIntervalSec=60 StartLimitIntervalSec=60

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/kanboard WorkingDirectory=/opt/kanboard
ExecStart=/usr/bin/docker-compose --project-name kanboard up ExecStart=/usr/bin/docker compose --project-name kanboard up
ExecStop=/usr/bin/docker-compose --project-name kanboard down ExecStop=/usr/bin/docker compose --project-name kanboard down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/mailu WorkingDirectory=/opt/mailu
ExecStart=/usr/bin/docker-compose --project-name mailu up ExecStart=/usr/bin/docker compose --project-name mailu up
ExecStop=/usr/bin/docker-compose --project-name mailu down ExecStop=/usr/bin/docker compose --project-name mailu down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/mpa_wordpress WorkingDirectory=/opt/mpa_wordpress
ExecStart=/usr/bin/docker-compose --project-name mpa-wp up ExecStart=/usr/bin/docker compose --project-name mpa-wp up
ExecStop=/usr/bin/docker-compose --project-name mpa-wp down ExecStop=/usr/bin/docker compose --project-name mpa-wp down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/mumble WorkingDirectory=/opt/mumble
ExecStart=/usr/bin/docker-compose --project-name mumble up ExecStart=/usr/bin/docker compose --project-name mumble up
ExecStop=/usr/bin/docker-compose --project-name mumble down ExecStop=/usr/bin/docker compose --project-name mumble down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/openldap WorkingDirectory=/opt/openldap
ExecStart=/usr/bin/docker-compose --project-name openldap up ExecStart=/usr/bin/docker compose --project-name openldap up
ExecStop=/usr/bin/docker-compose --project-name openldap down ExecStop=/usr/bin/docker compose --project-name openldap down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/syncthing WorkingDirectory=/opt/syncthing
ExecStart=/usr/bin/docker-compose --project-name syncthing up ExecStart=/usr/bin/docker compose --project-name syncthing up
ExecStop=/usr/bin/docker-compose --project-name syncthing down ExecStop=/usr/bin/docker compose --project-name syncthing down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/vaultwarden WorkingDirectory=/opt/vaultwarden
ExecStart=/usr/bin/docker-compose --project-name vaultwarden up ExecStart=/usr/bin/docker compose --project-name vaultwarden up
ExecStop=/usr/bin/docker-compose --project-name vaultwarden down ExecStop=/usr/bin/docker compose --project-name vaultwarden down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/website WorkingDirectory=/opt/website
ExecStart=/usr/bin/docker-compose --project-name website up ExecStart=/usr/bin/docker compose --project-name website up
ExecStop=/usr/bin/docker-compose --project-name website down ExecStop=/usr/bin/docker compose --project-name website down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -5,8 +5,8 @@ After=docker.service
[Service] [Service]
WorkingDirectory=/opt/yopass WorkingDirectory=/opt/yopass
ExecStart=/usr/bin/docker-compose --project-name yopass up ExecStart=/usr/bin/docker compose --project-name yopass up
ExecStop=/usr/bin/docker-compose --project-name yopass down ExecStop=/usr/bin/docker compose --project-name yopass down
TimeoutStartSec=0 TimeoutStartSec=0
Restart=on-failure Restart=on-failure
StartLimitBurst=3 StartLimitBurst=3

View file

@ -10,6 +10,8 @@ services:
environment: environment:
USER_UID: 1000 USER_UID: 1000
USER_GID: 1000 USER_GID: 1000
GITEA____APP_NAME: JILITS Git
GITEA____APP_SLOGAN: Cloud Solutions with Integrity
GITEA__database__DB_TYPE: postgres GITEA__database__DB_TYPE: postgres
GITEA__database__HOST: db:5432 GITEA__database__HOST: db:5432
GITEA__database__NAME: ${POSTGRES_DB} GITEA__database__NAME: ${POSTGRES_DB}
@ -24,7 +26,8 @@ services:
GITEA__service__NO_REPLY_ADDRESS: noreply.git.jilits.se GITEA__service__NO_REPLY_ADDRESS: noreply.git.jilits.se
GITEA__mailer__ENABLED: "true" GITEA__mailer__ENABLED: "true"
GITEA__mailer__PROTOCOL: smtp GITEA__mailer__PROTOCOL: smtp
GITEA__mailer__SMTP_ADDR: mail.jilits.se:587 GITEA__mailer__SMTP_ADDR: mail.jilits.se
GITEA__mailer__SMTP_PORT: 587
GITEA__mailer__FROM: Forgejo <git@jilits.se> GITEA__mailer__FROM: Forgejo <git@jilits.se>
GITEA__mailer__USER: ${SMTP_USER} GITEA__mailer__USER: ${SMTP_USER}
GITEA__mailer__PASSWD: ${SMTP_PASS} GITEA__mailer__PASSWD: ${SMTP_PASS}