Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Alinka PySide

## Development

If you're using Docker Compose (or Linux in general) for development, be aware
that Waylaynd as Windows System is causing issues and it would be wise
to switch X11 (see procedure in https://apploye.com/help/switch-from-wayland-to-xorg-ubuntu/).

## Release
To make a release please follow instruction
1. Go to "Actions" tab and run "Crate release" workflow (additional instructions [here](https://docs.github.com/en/actions/how-tos/managing-workflow-runs-and-deployments/managing-workflow-runs/manually-running-a-workflow#running-a-workflow)).
Expand Down
19 changes: 14 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
services:
app:
environment:
- DISPLAY=$DISPLAY
# X11 (legacy)
- DISPLAY=$DISPLAY
# Wayland
- XDG_RUNTIME_DIR=$XDG_RUNTIME_DIR
- WAYLAND_DISPLAY=$WAYLAND_DISPLAY
container_name: alinka-linux
build:
context: .
Expand All @@ -10,9 +14,14 @@ services:
command: python run.py

volumes:
- ".:/app/"
- "/tmp/.X11-unix:/tmp/.X11-unix"
- "./.volumes/data:/home/qtuser/.local/share/Alinka"
- "./.volumes/documents:/home/qtuser/Documents/Alinka"
# source code
- ".:/app/"
# X11 (legacy)
- "/tmp/.X11-unix:/tmp/.X11-unix"
# Wayland
- "${XDG_RUNTIME_DIR}/${WAYLAND_DISPLAY}:${XDG_RUNTIME_DIR}/${WAYLAND_DISPLAY}"
# data
- "./.volumes/data:/home/qtuser/.local/share/Alinka"
- "./.volumes/documents:/home/qtuser/Documents/Alinka"

user: qtuser