Skip to content

Commit

Permalink
Fix hostnames
Browse files Browse the repository at this point in the history
  • Loading branch information
acmlira committed Sep 19, 2022
1 parent 9dbe484 commit dbf7e22
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
version: '3'
version: '3.9'

services:
postgres:
image: postgres:10
container_name: the-coolest-shuffler-postgres
ports:
- 5432:5432
volumes:
Expand All @@ -14,15 +13,13 @@ services:
- POSTGRES_PASSWORD=postgres
redis:
image: redis:6.2-alpine
container_name: the-coolest-shuffler-redis
restart: always
ports:
- 6379:6379
command: redis-server --save 20 1 --loglevel warning
volumes:
- redis:/data
app:
container_name: the-coolest-shuffler-app
ports:
- 8916:8916
build:
Expand All @@ -33,6 +30,7 @@ services:
links:
- postgres
- redis

volumes:
redis:
driver: local

0 comments on commit dbf7e22

Please sign in to comment.