Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
# This is capable to relay via gmail, Amazon SES, or generic relays
# See: https://gitlab.com/egos-tech/smtp
mail:
image: ghcr.io/egos-tech/smtp:1.1.3
image: ${REGISTRY_MIRROR_URL:-}ghcr.io/egos-tech/smtp:1.1.3
restart: always
environment:
# For use with Amazon SES relay
Expand All @@ -18,7 +18,7 @@ services:
- "SMARTHOST_ALIASES=${SMARTHOST_ALIASES}"

redis:
image: valkey/valkey:7.2
image: ${REGISTRY_MIRROR_URL:-}valkey/valkey:7.2
restart: always
command: |
sh -c '
Expand Down Expand Up @@ -50,7 +50,7 @@ services:

db:
# We use MariaDB because it supports ARM and has the expected collations
image: mariadb:10.11
image: ${REGISTRY_MIRROR_URL:-}mariadb:10.11
restart: always
environment:
- "MYSQL_USER=${MYSQL_USER:-misp}"
Expand Down Expand Up @@ -79,7 +79,7 @@ services:
start_interval: 5s

misp-core:
image: ghcr.io/misp/misp-docker/misp-core:${CORE_RUNNING_TAG:-latest}
image: ${REGISTRY_MIRROR_URL:-}ghcr.io/misp/misp-docker/misp-core:${CORE_RUNNING_TAG:-latest}
restart: always
cap_add:
- AUDIT_WRITE
Expand Down Expand Up @@ -310,7 +310,7 @@ services:
- "COMPOSE_PROFILES=${COMPOSE_PROFILES}"

misp-modules:
image: ghcr.io/misp/misp-docker/misp-modules:${MODULES_RUNNING_TAG:-latest}
image: ${REGISTRY_MIRROR_URL:-}ghcr.io/misp/misp-docker/misp-modules:${MODULES_RUNNING_TAG:-latest}
restart: always
build:
context: modules/.
Expand All @@ -336,7 +336,7 @@ services:
profiles:
- misp-guard
restart: always
image: ghcr.io/misp/misp-docker/misp-guard:${GUARD_RUNNING_TAG:-latest}
image: ${REGISTRY_MIRROR_URL:-}ghcr.io/misp/misp-docker/misp-guard:${GUARD_RUNNING_TAG:-latest}
build:
context: guard/.
args:
Expand Down
3 changes: 3 additions & 0 deletions template.env
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ PYPI_SUPERVISOR_VERSION="==4.2.5"
# MODULES_RUNNING_TAG=latest
# GUARD_RUNNING_TAG=latest

# optional: use a registry mirror for docker images (include trailing slash, e.g., internal.mirror.com/)
# REGISTRY_MIRROR_URL=

# Email/username for user #1, defaults to MISP's default (admin@admin.test)
ADMIN_EMAIL=
# name of org #1, default to MISP's default (ORGNAME)
Expand Down