add support for dockerized container hosting
This commit is contained in:
parent
30b187a96e
commit
4364310b24
5 changed files with 115 additions and 65 deletions
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
version: "3.9"
|
||||
services:
|
||||
app:
|
||||
image: websurfx:latest
|
||||
build: .
|
||||
ports:
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- redis
|
||||
links:
|
||||
- redis
|
||||
redis:
|
||||
image: redis:latest
|
||||
ports:
|
||||
- 6379:6379
|
Loading…
Add table
Add a link
Reference in a new issue