https://github.com/gabeduartem/dotfiles
https://github.com/gabeduartem/dotfiles
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/gabeduartem/dotfiles
- Owner: GabeDuarteM
- Created: 2018-04-19T17:20:47.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-08-06T22:39:20.000Z (almost 2 years ago)
- Last Synced: 2024-08-07T02:07:44.408Z (almost 2 years ago)
- Language: Shell
- Size: 31.6 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
## Setup
1. run `curl -L https://gdm.dev/dotfiles | bash`
## Dev
To test the environment more easily, you can use the following Dockerfile
```Dockerfile
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y \
sudo
# adds a user with sudo privileges and sets an ultra-secure highly classified password
RUN useradd -m gabe && echo "gabe:gabe" | chpasswd && adduser gabe sudo
USER gabe
WORKDIR /home/gabe
COPY . .
```
And then run it with `docker build -t dotfiles . && docker run --rm -it dotfiles`
## See also
- [Useful commands](Useful%20commands.md)