forked from jessfraz/dockerfiles
-
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.
- Loading branch information
Showing
6 changed files
with
76 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# Run gimp in a contianer | ||
# | ||
# docker run -d \ | ||
# -v /etc/localtime:/etc/localtime:ro \ | ||
# -v /tmp/.X11-unix:/tmp/.X11-unix \ | ||
# -e DISPLAY=unix$DISPLAY \ | ||
# -v $HOME/Pictures:/root/Pictures \ | ||
# --name gimp \ | ||
# jess/gimp | ||
# | ||
FROM debian:jessie | ||
MAINTAINER Jessica Frazelle <[email protected]> | ||
|
||
|
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 |
---|---|---|
@@ -1,3 +1,13 @@ | ||
# Run remmina in a container | ||
# | ||
# docker run -d \ | ||
# -v /etc/localtime:/etc/localtime:ro \ | ||
# -v /tmp/.X11-unix:/tmp/.X11-unix \ | ||
# -e DISPLAY=unix$DISPLAY \ | ||
# -v $HOME/.remmina:/root/.remmina \ | ||
# --name remmina \ | ||
# jess/remmina | ||
# | ||
FROM ubuntu:14.10 | ||
MAINTAINER Jessica Frazelle <[email protected]> | ||
|
||
|
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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
# Run spotify windows app in a container with wine | ||
# | ||
# docker run --rm -it \ | ||
# -v /etc/localtime:/etc/localtime:ro \ | ||
# --cpuset-cpus 0 \ | ||
# -v /tmp/.X11-unix:/tmp/.X11-unix \ | ||
# -e DISPLAY=unix$DISPLAY \ | ||
# --device /dev/snd:/dev/snd \ | ||
# --name spotify-wine \ | ||
# jess/spotify-wine bash | ||
# | ||
FROM debian:jessie | ||
MAINTAINER Jessie Frazelle <[email protected]> | ||
|
||
|
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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
# Run spotify in a container | ||
# | ||
# docker run -d \ | ||
# -v /etc/localtime:/etc/localtime:ro \ | ||
# -v /tmp/.X11-unix:/tmp/.X11-unix \ | ||
# -e DISPLAY=unix$DISPLAY \ | ||
# --device /dev/snd:/dev/snd \ | ||
# -v $HOME/.spotify/config:/root/.config/spotify \ | ||
# -v $HOME/.spotify/cache:/root/.cache/spotify \ | ||
# --name spotify \ | ||
# jess/spotify | ||
# | ||
FROM ubuntu:14.04 | ||
MAINTAINER Jessie Frazelle <[email protected]> | ||
|
||
|
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
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,29 @@ | ||
<?xml version='1.0'?> | ||
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | ||
<fontconfig> | ||
<match target="font"> | ||
<edit mode="assign" name="rgba"> | ||
<const>rgb</const> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit mode="assign" name="hinting"> | ||
<bool>true</bool> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit mode="assign" name="hintstyle"> | ||
<const>hintslight</const> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit mode="assign" name="antialias"> | ||
<bool>true</bool> | ||
</edit> | ||
</match> | ||
<match target="font"> | ||
<edit mode="assign" name="lcdfilter"> | ||
<const>lcddefault</const> | ||
</edit> | ||
</match> | ||
</fontconfig> |