Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fernandobatels
Last active August 19, 2020 11:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandobatels/d95f49ccad51c350f8b6df301dbc9723 to your computer and use it in GitHub Desktop.
Save fernandobatels/d95f49ccad51c350f8b6df301dbc9723 to your computer and use it in GitHub Desktop.
Flamerobin for Firebird 3.0
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y flamerobin
RUN mkdir /root/.flamerobin
ENTRYPOINT [ "flamerobin" ]
@fernandobatels
Copy link
Author

fernandobatels commented Sep 15, 2019

  1. Create the imagem:
docker build -t feflamerobin .        
  1. Create the container
docker run -d --net=host --env="DISPLAY" --volume="$HOME/.Xauthority:/root/.Xauthority:rw" --volume="$HOME/.flamerobin:/root/.flamerobin" --name flamerobin feflamerobin 
  1. Using the new container
docker start flamerobin 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment