Change env_file from env.template to .env

fixed the error in changing the docker_compose.yml file for the commit
This commit is contained in:
Maurício Gioachini
2025-08-29 12:50:44 -03:00
committed by GitHub
parent 28fd6fbd52
commit 6717efa397

View File

@@ -6,7 +6,7 @@ services:
context: .
dockerfile: Dockerfile
container_name: romm-dev
env_file: env.template
env_file: .env
environment:
- REDIS_HOST=romm-valkey-dev
- DB_HOST=${DB_HOST:-romm-db-dev}
@@ -35,7 +35,7 @@ services:
image: mariadb:11.3.2
container_name: romm-db-dev
restart: unless-stopped
env_file: env.template
env_file: .env
environment:
- MARIADB_ROOT_PASSWORD=${DB_ROOT_PASSWD:-rootpassword}
- MARIADB_DATABASE=${DB_NAME:-romm}
@@ -50,7 +50,7 @@ services:
image: valkey/valkey:8
container_name: romm-valkey-dev
restart: unless-stopped
env_file: env.template
env_file: .env
ports:
- "${REDIS_PORT:-6379}:6379"
@@ -58,7 +58,7 @@ services:
image: postgres:16-alpine
container_name: romm-postgresql-dev
restart: unless-stopped
env_file: env.template
env_file: .env
environment:
POSTGRES_PASSWORD: ${DB_PASSWD:-postgres}
POSTGRES_USER: ${DB_USER:-postgres}
@@ -73,7 +73,7 @@ services:
container_name: romm-authentik-server
restart: unless-stopped
command: server
env_file: env.template
env_file: .env
environment:
AUTHENTIK_REDIS__HOST: romm-valkey-dev
AUTHENTIK_POSTGRESQL__HOST: romm-postgres-dev
@@ -97,7 +97,7 @@ services:
container_name: romm-authentik-worker
restart: unless-stopped
command: worker
env_file: env.template
env_file: .env
environment:
AUTHENTIK_REDIS__HOST: romm-valkey-dev
AUTHENTIK_POSTGRESQL__HOST: romm-postgres-dev