Skip to content

Commit

Permalink
Use current working container image
Browse files Browse the repository at this point in the history
  • Loading branch information
wshino committed Nov 7, 2024
1 parent 9a93cc7 commit d65c65c
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,31 @@ version: '3.8'

services:
relayer-smtp:
build:
context: .
dockerfile: SMTP.Dockerfile
image: wshino/relayer-smtp:latest
container_name: relayer-smtp
ports:
- "8080:8080"
env_file:
- .env
extra_hosts:
- "host.docker.internal:host-gateway"

relayer-imap:
build:
context: .
dockerfile: IMAP.Dockerfile
image: wshino/relayer-imap:latest
container_name: relayer-imap
env_file:
- .env
extra_hosts:
- "host.docker.internal:host-gateway"

relayer:
build:
context: .
dockerfile: Relayer.Dockerfile
image: bisht13/ar-relayer-base-4:latest
container_name: relayer
ports:
- "4500:4500"
env_file:
- .env
- .env
entrypoint: >
/bin/sh -c "echo \"$IC_PEM_CONTENT\" | base64 -d > .ic.pem && exec cargo run"
extra_hosts:
- "host.docker.internal:host-gateway"

0 comments on commit d65c65c

Please sign in to comment.