-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test Automation Using docker.bintray.io/jfrog/artifactory-oss Image #187
Comments
Yeah |
@faraonc This is a general change for Artifactory. Not related to the Docker image. |
@eldada It is important to note that most Docker images available like Postgres or MongoDB would have an entrypoint directory available to initialize the container in the proper state. For example: postgres:
image: postgres:12.1
container_name: postgres
command: -c ssl=on -c ssl_cert_file=/var/lib/postgresql/cert.pem -c ssl_key_file=/var/lib/postgresql/key.pem
ports:
- "${FS_PG_PORT:-5432}:${FS_PG_PORT:-5432}"
environment:
POSTGRES_USER: ${FS_PG_USER:-pgadmin}
POSTGRES_PASSWORD: ${FS_PG_PWD:-pgpwd}
volumes:
- ./db/postgres/sql_scripts/:/docker-entrypoint-initdb.d
- ./ca/cert.pem:/var/lib/postgresql/cert.pem
- ./ca/key.pem:/var/lib/postgresql/key.pem |
I am writing a script to automate grooming our Artifactory. Due to some of the files are currently used for production, I want to test my script using
docker.bintray.io/jfrog/artifactory-oss
image. Is there a way to prevent Artifactory to force useradmin
to change password on initial startup?Thanks!
The text was updated successfully, but these errors were encountered: