brew update
brew install pyenv
I hereby claim:
- I am learntoswim on github.
- I am kstanton (https://keybase.io/kstanton) on keybase.
- I have a public key ASCs9JzbmI_p6Ss-cAj-ANXeBnaJHGB7DXcICAp5bA6p4Qo
To claim this, I am signing this object:
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
# docker build -t wagtail . | |
# docker run -it -v $(pwd):/app -p 0.0.0.0:8080:8080 wagtail python manage.py runserver 0.0.0.0:8080 | |
FROM ubuntu:latest | |
RUN apt-get update &&\ | |
apt-get install -y language-pack-en-base python python-pip python-dev libjpeg-dev zlib1g-dev libpython-dev libmysqlclient-dev &&\ | |
apt-get clean &&\ | |
locale-gen en_US &&\ | |
update-locale LANG=en_US.UTF-8 |
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
wordpress: | |
image: wordpress | |
links: | |
- db:mysql | |
ports: | |
- 8080:80 | |
volumes: | |
- .:/var/www/html | |
environment: | |
WORDPRESS_DB_NAME: wordpress |