-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move tutorial Docker service to own compose file again
This is due to VSCode not supporting docker profiles (yet?). Thus we have issues setting up a nice DevContainer that doesn't start the demo as well.
- Loading branch information
Showing
2 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
services: | ||
tutorial: | ||
image: ghcr.io/kit-mrt/arbitration_graphs_pacman_tutorial:$VERSION | ||
env_file: .env | ||
ports: | ||
- "8080:8080" | ||
volumes: | ||
- .:/home/blinky/demo | ||
- $HOME/.Xauthority:/home/blinky/.Xauthority | ||
- /tmp/.X11-unix:/tmp/.X11-unix | ||
environment: | ||
- DISPLAY=$DISPLAY | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters