Skip to content

Commit

Permalink
Merge pull request #84 from Team-Solar-Powers/dev
Browse files Browse the repository at this point in the history
Create docker-compose.yml
  • Loading branch information
yubin-im authored Nov 23, 2023
2 parents 4ff042b + 4c6a79e commit f63adda
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: "3"
services:
webserver:
build: .
ports:
- "80:8099"
depends_on:
- redis
#restart:
#always


redis:
image: redis:latest
ports:
- "6379:6379"
command: redis-server --port 6379
hostname: redis
#restart:
#always

0 comments on commit f63adda

Please sign in to comment.