# This docker-compose file allows you to pull the devkitpro/devkitarm docker container # and use it to build the Poke Transporter GB rom(s). # # To launch the container itself in the background: # docker compose up -d # Note the container name being printed in the terminal. In my case it was this: poke_transporter_gb-build-1 # # Then get a terminal into the container like this: # docker exec -it poke_transporter_gb-build-1 /bin/bash # # Now you can build the project inside this terminal. version: "3.5" services: build: image: ptgb-builder:latest working_dir: /usr/Poke_Transporter_GB command: tail -F anything volumes: - type: bind source: ${SSH_AUTH_SOCK} target: ${SSH_AUTH_SOCK} - type: bind source: ${PWD} target: /usr/Poke_Transporter_GB