Skip to content
View iagoalonsomrf's full-sized avatar
Block or Report

Block or report iagoalonsomrf

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Marfeel/PubDockerFiles Marfeel/PubDockerFiles Public

    Publicly available Dockerfiles

    Shell 1

  2. ibLeDy/timezone-converter ibLeDy/timezone-converter Public

    Whole-day timezone comparison

    Python 13 6

  3. Standardised editor configuration Standardised editor configuration
    1
    root = true
    2
    
                  
    3
    [*]
    4
    end_of_line = lf
    5
    insert_final_newline = true
  4. Example pre-commit config for Python... Example pre-commit config for Python projects
    1
    repos:
    2
      - repo: meta
    3
        hooks:
    4
          - id: check-useless-excludes
    5
    
                  
  5. Best practices for writing Dockerfiles Best practices for writing Dockerfiles
    1
    ARG DEBIAN_FRONTEND=noninteractive
    2
    
                  
    3
    # Tags should be as specific as possible
    4
    FROM ubuntu:jammy-20220815
    5
    
                  
  6. Best practices for writing docker-co... Best practices for writing docker-compose files
    1
    version: "3"  # specify compose spec version
    2
    
                  
    3
    services:
    4
      db:  # define a service name (docker-compose restart db)
    5
        image: postgres:13  # specify an image tag