fix: Remove hostnames from docker-compose configs #76
15 changed files with 0 additions and 18 deletions
|
@ -7,7 +7,6 @@ services:
|
|||
image: ghcr.io/actualbudget/actual-server:24.9.0-alpine
|
||||
container_name: actualbudget
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: money
|
||||
domainname: ${BASE_DOMAIN}
|
||||
volumes:
|
||||
- ${BASE_DIR:-/srv}/actualbudget/data:/data
|
||||
|
|
|
@ -24,7 +24,6 @@ services:
|
|||
image: ghcr.io/goauthentik/server:2024.8
|
||||
container_name: authentik
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: auth
|
||||
domainname: ${BASE_DOMAIN}
|
||||
command: server
|
||||
environment:
|
||||
|
|
|
@ -8,7 +8,6 @@ services:
|
|||
image: lscr.io/linuxserver/fail2ban
|
||||
container_name: fail2ban
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: fail2ban
|
||||
domainname: ${BASE_DOMAIN}
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
|
|
|
@ -17,7 +17,6 @@ services:
|
|||
image: codeberg.org/forgejo/forgejo:8.0
|
||||
container_name: forgejo
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: git
|
||||
domainname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
|
|
|
@ -7,7 +7,6 @@ services:
|
|||
image: ghcr.io/imagegenius/amp:2.5.1-ubuntu
|
||||
container_name: games
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: games
|
||||
domainname: ${BASE_DOMAIN}
|
||||
mac_address: 02:42:AC:D7:11:9C # Please see the README about this field.
|
||||
labels:
|
||||
|
|
|
@ -16,7 +16,6 @@ services:
|
|||
image: quay.io/hedgedoc/hedgedoc:1.10.0-alpine
|
||||
container_name: hedgedoc
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: md
|
||||
domainname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
|
|
|
@ -3,7 +3,6 @@ services:
|
|||
image: git.csprung.de/carsten/homepage
|
||||
container_name: homepage
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: homepage
|
||||
domainname: ${BASE_DOMAIN}
|
||||
networks:
|
||||
- proxy
|
||||
|
|
|
@ -20,7 +20,6 @@ services:
|
|||
image: mailserver/docker-mailserver:14
|
||||
container_name: mail
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: post
|
||||
domainname: ${BASE_DOMAIN}
|
||||
cap_add:
|
||||
- NET_ADMIN # For Fail2Ban to work
|
||||
|
|
|
@ -16,7 +16,6 @@ services:
|
|||
image: ghcr.io/element-hq/synapse:v1.115.0
|
||||
container_name: matrix
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: matrix
|
||||
domainname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- SYNAPSE_CONFIG_DIR=/config
|
||||
|
|
|
@ -23,7 +23,6 @@ services:
|
|||
image: nextcloud:30
|
||||
container_name: nextcloud
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: cloud
|
||||
domainname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- APACHE_DISABLE_REWRITE_IP=1
|
||||
|
@ -91,7 +90,6 @@ services:
|
|||
image: ghcr.io/processone/eturnal:1.12
|
||||
container_name: eturnal
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: eturnal
|
||||
domainname: ${BASE_DOMAIN}
|
||||
user: 9000:9000
|
||||
read_only: true
|
||||
|
|
|
@ -12,7 +12,6 @@ services:
|
|||
image: caddy:2-alpine
|
||||
container_name: proxy
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- BASE_DOMAIN=${BASE_DOMAIN}
|
||||
- SECOND_MAIL_DOMAIN=${SECOND_MAIL_DOMAIN}
|
||||
|
@ -39,7 +38,6 @@ services:
|
|||
image: jwilder/whoami
|
||||
container_name: echo
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: echo
|
||||
domainname: ${BASE_DOMAIN}
|
||||
networks:
|
||||
- proxy
|
||||
|
|
|
@ -12,7 +12,6 @@ services:
|
|||
image: ghcr.io/dani-garcia/vaultwarden:1.32.0-alpine
|
||||
container_name: vaultwarden
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: vaultwarden
|
||||
domainname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- DOMAIN=https://passwords.${BASE_DOMAIN}
|
||||
|
|
|
@ -8,7 +8,6 @@ services:
|
|||
image: containrrr/watchtower
|
||||
container_name: watchtower
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: watchtower
|
||||
domainname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- TZ=${TIMEZONE}
|
||||
|
|
|
@ -11,7 +11,6 @@ services:
|
|||
image: lscr.io/linuxserver/wireguard:latest
|
||||
container_name: wireguard
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: vpn
|
||||
domainname: ${BASE_DOMAIN}
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
|
|
|
@ -15,7 +15,6 @@ services:
|
|||
image: woodpeckerci/woodpecker-server:v2.7.1-alpine
|
||||
container_name: woodpecker
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: ci
|
||||
domainname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- WOODPECKER_HOST=https://ci.${BASE_DOMAIN}
|
||||
|
@ -45,7 +44,6 @@ services:
|
|||
command: agent
|
||||
container_name: woodpecker-agent
|
||||
restart: "${RESTART:-no}"
|
||||
hostname: runner
|
||||
domainname: ${BASE_DOMAIN}
|
||||
environment:
|
||||
- WOODPECKER_SERVER=woodpecker:9000
|
||||
|
|
Loading…
Reference in a new issue