Skip to content

Commit

Permalink
Merge pull request #1095 from dhsifss/main
Browse files Browse the repository at this point in the history
feat: support arm
  • Loading branch information
xbingW authored Oct 31, 2024
2 parents f851033 + e1e801c commit 78912d0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
postgres:
container_name: safeline-pg
restart: always
image: ${IMAGE_PREFIX}/safeline-postgres:15.2
image: ${IMAGE_PREFIX}/safeline-postgres${ARCH_SUFFIX}:15.2
volumes:
- ${SAFELINE_DIR}/resources/postgres/data:/var/lib/postgresql/data
- /etc/localtime:/etc/localtime:ro
Expand All @@ -30,7 +30,7 @@ services:
mgt:
container_name: safeline-mgt
restart: always
image: ${IMAGE_PREFIX}/safeline-mgt-g:${IMAGE_TAG:?image tag required}
image: ${IMAGE_PREFIX}/safeline-mgt-g${ARCH_SUFFIX}:${IMAGE_TAG:?image tag required}
volumes:
- /etc/localtime:/etc/localtime:ro
- ${SAFELINE_DIR}/resources/mgt:/app/data
Expand All @@ -56,7 +56,7 @@ services:
detect:
container_name: safeline-detector
restart: always
image: ${IMAGE_PREFIX}/safeline-detector-g:${IMAGE_TAG}
image: ${IMAGE_PREFIX}/safeline-detector-g${ARCH_SUFFIX}:${IMAGE_TAG}
volumes:
- ${SAFELINE_DIR}/resources/detector:/resources/detector
- ${SAFELINE_DIR}/logs/detector:/logs/detector
Expand All @@ -69,7 +69,7 @@ services:
tengine:
container_name: safeline-tengine
restart: always
image: ${IMAGE_PREFIX}/safeline-tengine-g:${IMAGE_TAG}
image: ${IMAGE_PREFIX}/safeline-tengine-g${ARCH_SUFFIX}:${IMAGE_TAG}
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/resolv.conf:/etc/resolv.conf:ro
Expand All @@ -89,7 +89,7 @@ services:
luigi:
container_name: safeline-luigi
restart: always
image: ${IMAGE_PREFIX}/safeline-luigi-g:${IMAGE_TAG}
image: ${IMAGE_PREFIX}/safeline-luigi-g${ARCH_SUFFIX}:${IMAGE_TAG}
environment:
- MGT_IP=${SUBNET_PREFIX}.4
- LUIGI_PG=postgres://safeline-ce:${POSTGRES_PASSWORD}@safeline-pg/safeline-ce?sslmode=disable
Expand All @@ -109,7 +109,7 @@ services:
fvm:
container_name: safeline-fvm
restart: always
image: ${IMAGE_PREFIX}/safeline-fvm-g:${IMAGE_TAG}
image: ${IMAGE_PREFIX}/safeline-fvm-g${ARCH_SUFFIX}:${IMAGE_TAG}
volumes:
- /etc/localtime:/etc/localtime:ro
logging:
Expand All @@ -122,7 +122,7 @@ services:
chaos:
container_name: safeline-chaos
restart: always
image: ${IMAGE_PREFIX}/safeline-chaos-g:${IMAGE_TAG}
image: ${IMAGE_PREFIX}/safeline-chaos-g${ARCH_SUFFIX}:${IMAGE_TAG}
logging:
options:
max-size: "100m"
Expand Down

0 comments on commit 78912d0

Please sign in to comment.