Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: docker-library/python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: purpose2do/python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Sep 9, 2023

  1. Updated the image for the app service to docker/dev-environments-defa…

    …ult:stable-1.
    
    This image provides a basic development environment with all the necessary tools installed.
    The init flag has also been set to true, which ensures that the container is initialized before the entrypoint is executed.
    This prevents the container from exiting immediately if the entrypoint fails.
    A volume has also been added to the app service to mount the host's /var/run/docker.sock file into the container.
    This allows the container to communicate with the Docker daemon on the host machine.
    purpose2do committed Sep 9, 2023
    Copy the full SHA
    19d9009 View commit details
Showing with 12 additions and 0 deletions.
  1. +12 −0 compose-dev.yaml
12 changes: 12 additions & 0 deletions compose-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
services:
app:
entrypoint:
- sleep
- infinity
image: docker/dev-environments-default:stable-1
init: true
volumes:
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock