Skip to content

Commit

Permalink
Update docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
wshino committed Nov 7, 2024
1 parent 7f4c814 commit 9a93cc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion SMTP.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
WORKDIR /usr/src/relayer-smtp

# Clone the repository
RUN git clone https://github.com/zkemail/relayer-smtp.git .
RUN git clone https://github.com/zkfriendly/relayer-smtp.git .

# Build the application
RUN cargo build --release
Expand All @@ -24,6 +24,7 @@ FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y \
pkg-config \
libssl-dev \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*

# Copy the built binary from the builder stage
Expand Down
4 changes: 1 addition & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
dockerfile: SMTP.Dockerfile
container_name: relayer-smtp
ports:
- "3000:3000"
- "8080:8080"
env_file:
- .env

Expand All @@ -16,8 +16,6 @@ services:
context: .
dockerfile: IMAP.Dockerfile
container_name: relayer-imap
ports:
- "3001:3001"
env_file:
- .env

Expand Down

0 comments on commit 9a93cc7

Please sign in to comment.