Skip to content

Commit

Permalink
Fixed docker-compose with correct tags. (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 authored Nov 13, 2023
1 parent f7e78f6 commit 9d92e84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker-compose-postgres.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
podfetch:
image: samuel19982/podfetch:postgres
image: samuel19982/podfetch:latest
user: ${UID:-1000}:${GID:-1000}
ports:
- "80:8000"
Expand All @@ -11,6 +11,8 @@ services:
- POLLING_INTERVAL=300
- SERVER_URL=http://localhost:80
- DATABASE_URL=postgresql://postgres:changeme@postgres/podfetch
depends_on:
- postgres
postgres:
image: postgres
environment:
Expand Down

0 comments on commit 9d92e84

Please sign in to comment.