Update docker-compose.yaml

This commit is contained in:
bjoernellens1 2023-10-23 12:24:41 +02:00 committed by GitHub
parent ceb4b97b32
commit 785e50b7a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,17 +14,13 @@ services: # in docker compose, service are definitions of your docker containers
platforms:
- linux/amd64
my_example: # for this example I am using a very simple docker build for reference: hello-world (builds very fast)
my_example: # this already represents a more complex ros2 build process.
image: ghcr.io/bjoernellens1/ros2_docker_template/my_example # hello-world image. No prefix means it defaults the image registry to dockerhub
build:
context: .
dockerfile: docker/my_example.Dockerfile # the Dockerfile speciefies the steps taken in the build process.
tags:
- ghcr.io/bjoernellens1/ros2_docker_template/my_example
#target: my_example # here you specify the build target in the Dockerfile
x-bake: # Definitions needed for buildx bake. This enhanced docker build system makes things much easier.
platforms:
- linux/amd64
environment:
# Allows graphical programs in the container.
- DISPLAY=${DISPLAY}