created docker-compose with haifa image and redis private connection
This commit is contained in:
parent
895ced712c
commit
37c8ed78b8
2 changed files with 20 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -12,6 +12,7 @@ tmp
|
|||
## ENV Vars ##
|
||||
.env
|
||||
config/client_google_auth.json
|
||||
redis
|
||||
|
||||
## Docker ##
|
||||
build_image.sh
|
||||
|
|
19
docker-compose.yaml
Normal file
19
docker-compose.yaml
Normal file
|
@ -0,0 +1,19 @@
|
|||
version: "3.9"
|
||||
|
||||
services:
|
||||
haifareminder:
|
||||
image: kfda89/haifareminder:latest
|
||||
container_name: haifareminder
|
||||
networks:
|
||||
- my-network
|
||||
ports:
|
||||
- "3000:3000"
|
||||
|
||||
redis:
|
||||
image: redis:latest
|
||||
networks:
|
||||
- my-network
|
||||
|
||||
networks:
|
||||
my-network:
|
||||
driver: bridge
|
Loading…
Reference in a new issue