Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
services:
mysql:
container_name: artemis-mysql
image: docker.io/library/mysql:9.5.0
image: "${MYSQL_IMAGE:-docker.io/library/mysql:9.5.0}"
pull_policy: missing
volumes:
- artemis-mysql-data:/var/lib/mysql
Expand Down
2 changes: 1 addition & 1 deletion docker/postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
services:
postgres:
container_name: artemis-postgres
image: docker.io/library/postgres:18.1-alpine
image: "${POSTGRES_IMAGE:-docker.io/library/postgres:18.1-alpine}"
pull_policy: missing
user: postgres
command: ["postgres", "-c", "max_connections=10000"]
Expand Down
Loading