Skip to content

Commit

Permalink
Create docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zzawang authored May 27, 2024
1 parent 7609eaa commit 63b9b69
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions be/issue-tracker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: '3.8'

services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
depends_on:
- redis

redis:
image: redis:7.2.4-alpine3.19
ports:
- "6379:6379"

0 comments on commit 63b9b69

Please sign in to comment.