mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-03-21 17:34:42 -05:00
28 lines
843 B
YAML
28 lines
843 B
YAML
# 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
|
|
|