File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
lib/kamal/configuration/docs Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ accessories:
4343
4444 # Port mappings
4545 #
46- # See https://docs.docker.com/network/, and especially note the warning about the security
47- # implications of exposing ports publicly.
46+ # See [ https://docs.docker.com/network/](https://docs.docker.com/network/) , and
47+ # especially note the warning about the security implications of exposing ports publicly.
4848 port : " 127.0.0.1:3306:3306"
4949
5050 # Labels
@@ -101,4 +101,4 @@ accessories:
101101 # Proxy
102102 #
103103 proxy :
104- ...
104+ ...
Original file line number Diff line number Diff line change 55# For example, for a Rails app, you might open a console with:
66#
77# ```shell
8- # kamal app exec -i -r console " rails console"
8+ # kamal app exec -i --reuse "bin/ rails console"
99# ```
1010#
1111# By defining an alias, like this:
1212aliases :
13- console : app exec -r console -i " rails console"
13+ console : app exec -i --reuse "bin/ rails console"
1414# You can now open the console with:
1515#
1616# ```shell
Original file line number Diff line number Diff line change 22#
33# The default registry is Docker Hub, but you can change it using `registry/server`.
44#
5+ # By default, Docker Hub creates public repositories. To avoid making your images public,
6+ # set up a private repository before deploying, or change the default repository privacy
7+ # settings to private in your [Docker Hub settings](https://hub.docker.com/repository-settings/default-privacy).
8+ #
59# A reference to a secret (in this case, `DOCKER_REGISTRY_TOKEN`) will look up the secret
610# in the local environment:
711registry :
You can’t perform that action at this time.
0 commit comments