Server IP : 85.214.239.14 / Your IP : 3.147.68.58 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/lib/python3/dist-packages/ansible_collections/cyberark/conjur/dev/ |
Upload File : |
version: '3' services: ansible: build: context: . dockerfile: Dockerfile command: /bin/sleep 1d environment: CONJUR_APPLIANCE_URL: http://conjur:3000 CONJUR_ACCOUNT: cucumber CONJUR_AUTHN_LOGIN: host/ansible/ansible-master CONJUR_AUTHN_API_KEY: ${ANSIBLE_CONJUR_AUTHN_API_KEY} CONJUR_CUSTOM_AUTHN_API_KEY: ${CUSTOM_CONJUR_AUTHN_API_KEY} COMPOSE_PROJECT_NAME: ${COMPOSE_PROJECT_NAME} # NOTE: Explicitly setting the ANSIBLE_CONFIG envvar avoids Ansible ignoring # the configuration because it is in a world-writable working directory, # see https://docs.ansible.com/ansible/latest/reference_appendices/config.html#avoiding-security-risks-with-ansible-cfg-in-the-current-directory. ANSIBLE_CONFIG: ./ansible.cfg volumes: - ../roles/conjur_host_identity:/cyberark/cyberark.conjur.conjur-host-identity/ - .:/cyberark/dev/ - /var/run/docker.sock:/var/run/docker.sock pg: image: postgres:9.3 conjur: image: cyberark/conjur command: server -a cucumber -p 3000 environment: CONJUR_APPLIANCE_URL: http://localhost:3000 DATABASE_URL: postgres://postgres@pg/postgres CONJUR_DATA_KEY: "W0BuL8iTr/7QvtjIluJbrb5LDAnmXzmcpxkqihO3dXA=" networks: - default links: - pg conjur_cli: image: cyberark/conjur-cli:5-latest entrypoint: [] command: sleep infinity environment: CONJUR_APPLIANCE_URL: http://conjur:3000 CONJUR_ACCOUNT: cucumber CONJUR_AUTHN_LOGIN: admin CONJUR_AUTHN_API_KEY: ${CLI_CONJUR_AUTHN_API_KEY} volumes: - ./policy:/policy networks: - default links: - conjur test_app_ubuntu: build: ./test_app_ubuntu entrypoint: sleep command: infinity test_app_centos: build: ./test_app_centos entrypoint: sleep command: infinity conjur-proxy-nginx: build: context: . dockerfile: Dockerfile_nginx entrypoint: nginx-debug -g 'daemon off;' environment: TERM: xterm depends_on: - conjur - conjur_cli