You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry if this is a duplicate I searched and didn't find anything similar.
I'm using kamal-1.6.0 with rails-7.1.3.4
While deploying a project to a blank AWS ubuntu machine the command kamal setup fails in two steps:
first it installs docker, then it fails while pushing the image, because it didn't add the user to the docker group (not running as root, but user had sudo permission)
then I manually login to the machine and add the user to the docker group, docker commands work
then it fails while starting traefik, because "docker: open .kamal/env/traefik/traefik.env: no such file or directory"
then I run kamal env push
then the third time kamal setup is executed, it works fine
not sure if this is a duplicate, I didn't find any other similar issues,
My understanding is that kamal setup should do all required steps and setup the remote machines for deployment, and "simply work"
this is my "config/deploy.yml"
service: .....image: .....# Deploy to these servers.servers:
- ....IP.....# Credentials for your image host.registry:
username: urubatanpassword:
- KAMAL_REGISTRY_PASSWORDenv:
clear:
POSTGRESQL_ADDRESS: ....POSTGRESQL_USERNAME: .....POSTGRESQL_PASSWORD: .....secret:
- RAILS_MASTER_KEYssh:
user: ubuntutraefik:
args:
entryPoints.http.address: ":80"entryPoints.http.forwardedHeaders.insecure: trueaccesslog: trueaccesslog.format: json primary_role: webbuilder:
multiarch: falsearch: amd64context: '.'
The text was updated successfully, but these errors were encountered:
Sorry if this is a duplicate I searched and didn't find anything similar.
I'm using kamal-1.6.0 with rails-7.1.3.4
While deploying a project to a blank AWS ubuntu machine the command
kamal setup
fails in two steps:first it installs docker, then it fails while pushing the image, because it didn't add the user to the docker group (not running as root, but user had sudo permission)
then I manually login to the machine and add the user to the docker group, docker commands work
then it fails while starting traefik, because "docker: open .kamal/env/traefik/traefik.env: no such file or directory"
then I run
kamal env push
then the third time
kamal setup
is executed, it works finenot sure if this is a duplicate, I didn't find any other similar issues,
My understanding is that
kamal setup
should do all required steps and setup the remote machines for deployment, and "simply work"this is my "config/deploy.yml"
The text was updated successfully, but these errors were encountered: