Skip to content

Commit

Permalink
Added platform keys to docker-compose.yml (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
Un-dev authored Nov 16, 2024
1 parent 2bd4dee commit 19fb99c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ services:
volumes:
- redis_data:/data
api:
platform: linux/x86_64
image: "ghcr.io/parcelvoy/api:${IMAGE_VERSION:-latest}"
restart: always
healthcheck:
Expand Down Expand Up @@ -98,6 +99,7 @@ services:
volumes:
- uploads:/usr/src/app/public/uploads
worker:
platform: linux/x86_64
image: "ghcr.io/parcelvoy/api:${IMAGE_VERSION:-latest}"
restart: always
links:
Expand Down Expand Up @@ -163,6 +165,7 @@ services:
TRACKING_LINK_WRAP: ${TRACKING_LINK_WRAP}
TRACKING_DEEPLINK_MIRROR_URL: ${TRACKING_DEEPLINK_MIRROR_URL}
ui:
platform: linux/x86_64
image: "ghcr.io/parcelvoy/ui:${PARCELVOY_VERSION:-latest}"
depends_on:
api:
Expand All @@ -177,4 +180,4 @@ volumes:
redis_data:
driver: local
uploads:
driver: local
driver: local

0 comments on commit 19fb99c

Please sign in to comment.