Skip to content
Snippets Groups Projects
Select Git revision
  • 2bae7d8575d127aefa55525fdd564c1b37464c72
  • master default
  • v0.0.1
3 results

Dockerfile

Blame
  • Dockerfile 264 B
    # Use posgres as base image
    FROM library/postgres:16.1
    
    # Allow access without password
    ENV POSTGRES_HOST_AUTH_METHOD=trust
    
    # Set postgres db name
    ENV POSTGRES_DB vospace_testdb 
    
    # Copy setup scripts into the right folder
    COPY *.sql /docker-entrypoint-initdb.d/