Skip to content

Commit

Permalink
Fixed readme and terraform init script.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 committed Nov 13, 2023
1 parent a851dc3 commit 791d883
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,12 @@ volumes:
version: '3'
services:
podfetch:
image: samuel19982/podfetch:postgres
image: samuel19982/podfetch:latest
user: ${UID:-1000}:${GID:-1000}
ports:
- "80:8000"
depends_on:
- postgres
volumes:
- ./podcasts:/app/podcasts
environment:
Expand Down
2 changes: 1 addition & 1 deletion setup/terraform/postgres-docker/start-podfetch/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {

resource "docker_container" "podfetch" {
name = "podfetch"
image = "samuel19982/podfetch:postgres"
image = "samuel19982/podfetch:latest"
restart = "always"
labels {
label = "traefik.enable"
Expand Down

0 comments on commit 791d883

Please sign in to comment.