Skip to content

Commit 6151bcc

Browse files
committed
Merge branch '118-default-server-port' into 'master'
fix: change the default server port (postgres-ai#118) Closes postgres-ai#118 See merge request postgres-ai/database-lab!96
2 parents 95a85d8 + 3f2ea19 commit 6151bcc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile.dblab-server

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# --name dblab_server \
44
# --label dblab_control \
55
# --privileged \
6-
# --publish 3000:3000 \
6+
# --publish 2345:2345 \
77
# --restart on-failure \
88
# --volume /var/run/docker.sock:/var/run/docker.sock \
99
# --volume /var/lib/dblab:/var/lib/dblab:rshared \
@@ -17,7 +17,7 @@
1717
# --name dblab_server \
1818
# --label dblab_control \
1919
# --privileged \
20-
# --publish 3000:3000 \
20+
# --publish 2345:2345 \
2121
# --restart on-failure \
2222
# --volume /var/run/docker.sock:/var/run/docker.sock \
2323
# --volume /var/lib/dblab:/var/lib/dblab:rshared \

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ initialize CLI and start communicating with the Database Lab server(s).
9090
```bash
9191
dblab init \
9292
--environment-id=tutorial \
93-
--url=http://$IP_OR_HOSTNAME:3000 \
93+
--url=http://$IP_OR_HOSTNAME:2345 \
9494
--token=secret_token
9595
```
9696

configs/config.sample.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
server:
55
verificationToken: "secret_token"
6-
port: 3000
6+
port: 2345
77

88
# Postgres.ai Platform integration.
99
platform:

0 commit comments

Comments
 (0)