21 lines
568 B
YAML
21 lines
568 B
YAML
all:
|
|
vars:
|
|
ansible_python_interpreter: /usr/bin/python3
|
|
ansible_user: deploy
|
|
ansible_ssh_private_key_file: ~/.ssh/production
|
|
|
|
production:
|
|
hosts:
|
|
production_server:
|
|
ansible_host: 94.16.110.151
|
|
docker_registry: localhost:5000
|
|
docker_image_name: framework
|
|
docker_image_tag: latest
|
|
docker_swarm_stack_name: framework
|
|
docker_services:
|
|
- framework_web
|
|
- framework_queue-worker
|
|
git_repo_path: /home/deploy/framework-app
|
|
build_dockerfile: Dockerfile.production
|
|
build_target: production
|