Skip to content

Commit 1c9150d

Browse files
fix: docker-compose
1 parent 3b62954 commit 1c9150d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/_examples/demo/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
POSTGRES_PASSWORD: ${DB_PASSWORD}
99
POSTGRES_DB: ${DB_DATABASE}
1010
ports:
11-
- "5434:${DB_PORT}"
11+
- "${DB_PORT}:5432"
1212
volumes:
1313
- postgres_data:/var/lib/postgresql/data
1414

@@ -20,7 +20,7 @@ services:
2020
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD_MYSQL}
2121
MYSQL_DATABASE: ${DB_DATABASE_MYSQL}
2222
ports:
23-
- "3308:${DB_PORT_MYSQL}"
23+
- "${DB_PORT_MYSQL}:3306"
2424
volumes:
2525
- mysql_data:/var/lib/mysql
2626

0 commit comments

Comments
 (0)