name: "{{ container_name }}"
image: "{{ ecr_account_id }}.dkr.ecr.{{ region }}.amazonaws.com/{{ ecr_image_name }}:{{ image_version }}"
recreate: yes
state: started
restart: yes
restart_policy: unless-stopped
ports:
- "8880:80"
healthcheck:
# Check if nginx server is healthy by curl'ing the server.
# If this fails or timeouts, the healthcheck fails.
test: ["CMD", "curl", "--fail", "http://localhost"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 30s
env:
AWS_ACCESS_KEY_ID: "{{ aws_access_key_id }}"
AWS_SECRET_ACCESS_KEY: "{{ aws_secret_access_key }}"
Ну похоже.
не работает так, amazon-ecr-credential-helper - не авторизируется так
Он прекрасно авторизуется через instance-profile
еще не пробовал через instance-profile )))
А через что пробовали?
пока только - руками указывал variables, хотел указать их с помощью ансибла
Обсуждают сегодня