Skip to content

Commit

Permalink
fix errors in example compose files
Browse files Browse the repository at this point in the history
  • Loading branch information
sirux88 committed Sep 19, 2023
1 parent 05af034 commit 9a3b62b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion containers/docker/pwpush/docker-compose-ephemeral.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
passwordpusher:
image: docker.io/pglombardo/pwpush:release
environment:
DATABASE_URL: "DATABASE_URL=sqlite3:db/db.sqlite3"
DATABASE_URL: "sqlite3:db/db.sqlite3"
ports:
- "5100:5100"
# You can set environment variables here, or in a .env file. See:
Expand Down
2 changes: 1 addition & 1 deletion containers/docker/pwpush/docker-compose-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
pwpush:
image: docker.io/pglombardo/pwpush:release
environment:
DATABASE_URL: 'DATABASE_URL=mysql2://passwordpusher_user:passwordpusher_passwd@mysql:3306/passwordpusher_db'
DATABASE_URL: 'mysql2://passwordpusher_user:passwordpusher_passwd@mysql:3306/passwordpusher_db'
ports:
- "5100:5100"
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion containers/docker/pwpush/docker-compose-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
pwpush:
image: docker.io/pglombardo/pwpush:release
environment:
DATABASE_URL: 'DATABASE_URL=mysql2://passwordpusher_user:passwordpusher_passwd@mysql:3306/passwordpusher_db'
DATABASE_URL: 'mysql2://passwordpusher_user:passwordpusher_passwd@mysql:3306/passwordpusher_db'
ports:
- "5100:5100"
depends_on:
Expand Down
4 changes: 2 additions & 2 deletions containers/docker/pwpush/docker-compose-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ services:
POSTGRES_DB: passwordpusher_db

passwordpusher:
image: docker.io/pglombardo/pwpush-postgres:release
image: docker.io/pglombardo/pwpush:release
environment:
DATABASE_URL: 'DATABASE_URL=postgres://passwordpusher_user:passwordpusher_passwd@postgres:5432/passwordpusher_db'
DATABASE_URL: 'postgres://passwordpusher_user:passwordpusher_passwd@postgres:5432/passwordpusher_db'
ports:
- "5100:5100"
depends_on:
Expand Down

0 comments on commit 9a3b62b

Please sign in to comment.